Jump to content
  • 0

Test new script


tathanngudong017

Question


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  06/16/15
  • Last Seen:  

That firt time,i make this sprite!I think something wrong in this Sprite!

Please,Who know where i wrong?Show me!

(Sorry...my bad english)

 

1@jtb,313,357,6 script Seed Of Live02 2019,{

 
mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
switch(QuestWarp) {
default:
mes "Nhót...chi...chi...chi...You want to go Cheetah Town..That not easy!";
mes "Get item for me...i will warp you there!";
mes "30 Bitter Herb";
mes "25 Cold Medicine";
mes "15 Four Leaf Clover ";
mes "20 Brown Root ";
next;
menu "Chợ Tổng Hợp",Poring,"I will try! ",Poporing,"So hard with me! ",
Poring:
if (countitem(621) >= 30 && countitem(12257) >= 25 && countitem(706) >= 15 && countitem(7188) >= 20) goto enough;
noTicket;
 
mes "What up,human?Do you have all i need";
next;
switch(select("There!Warp me right now","Sorry,I can't")) {
case 1:
goto yesTicket;
close;
case 2:
goto noTicket;
close;
 
noTicket:
mes "[Casino Guard]";
mes "Gruuuu...Get out the way";
close;
 
yesTicket:
mes "Good...very good!that all i need!Human,i warp you there right now!";
delitem 621,30;
delitem 23368,25;
delitem 706,15;
delitem 7188,20;
warp "c_tower3_",223,8; 
close;
 
Poporing:
if (countitem(5353) < 1) goto enough;
mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
mes "Vậy thì đi chỗ khác chơi nhé!";
close;
 
}

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  57
  • Reputation:   5
  • Joined:  11/19/13
  • Last Seen:  

 

That firt time,i make this sprite!I think something wrong in this Sprite!

Please,Who know where i wrong?Show me!

(Sorry...my bad english)

 

1@jtb,313,357,6 script Seed Of Live02 2019,{

 
mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
switch(QuestWarp) {
default:
mes "Nhót...chi...chi...chi...You want to go Cheetah Town..That not easy!";
mes "Get item for me...i will warp you there!";
mes "30 Bitter Herb";
mes "25 Cold Medicine";
mes "15 Four Leaf Clover ";
mes "20 Brown Root ";
next;
menu "Chợ Tổng Hợp",Poring,"I will try! ",Poporing,"So hard with me! ",
Poring:
if (countitem(621) >= 30 && countitem(12257) >= 25 && countitem(706) >= 15 && countitem(7188) >= 20) goto enough;
noTicket;
 
mes "What up,human?Do you have all i need";
next;
switch(select("There!Warp me right now","Sorry,I can't")) {
case 1:
goto yesTicket;
close;
case 2:
goto noTicket;
close;
 
noTicket:
mes "[Casino Guard]";
mes "Gruuuu...Get out the way";
close;
 
yesTicket:
mes "Good...very good!that all i need!Human,i warp you there right now!";
delitem 621,30;
delitem 23368,25;
delitem 706,15;
delitem 7188,20;
warp "c_tower3_",223,8; 
close;
 
Poporing:
if (countitem(5353) < 1) goto enough;
mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
mes "Vậy thì đi chỗ khác chơi nhé!";
close;
 
}

 

im not really sure is this what you want but can you can give it a try....

 

1@jtb,313,357,6	script	Seed Of Live02	2019,{
	
	mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
	mes "Nhót...chi...chi...chi...You want to go Cheetah Town..That not easy!";
	mes "Get item for me...i will warp you there!";
	mes "30 Bitter Herb";
	mes "25 Cold Medicine";
	mes "15 Four Leaf Clover ";
	mes "20 Brown Root ";
	next;
	menu "Chợ Tổng Hợp",Pass,"I will try!",Poring,"So hard with me!",Poporing;

Pass:
	if (countitem(5353) < 1) goto noticket;
	else{
		mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
		mes "Vậy thì đi chỗ khác chơi nhé!";
		warp "c_tower3_",223,8; 
		close;
	}

Poring:
	mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
	mes "What up,human?Do you have all i need";
	next;
	menu "There!Warp me right now",yesticket,"Sorry,I can't",noticket;
	
yesticket:
	if(countitem(621) < 30 || countitem(12257) < 25 || countitem(706) < 15 || countitem(7188) < 20) goto notenough;
	mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
	mes "Good...very good!that all i need!Human,i warp you there right now!";
	delitem 621,30;
	delitem 23368,25;
	delitem 706,15;
	delitem 7188,20;
	warp "c_tower3_",223,8; 
	close;

notenough:
	mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
	mes "Sorry..";
	mes "You dont have enough item";
	mes "Please comeback when you have collect all of it";
	close;
	

noticket:
	mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
	mes "Gruuuu...Get out the way";
	close;
	
Poporing:
	mes "[^0000FFKẻ dẫn lối đến Thị trấn Cheetah^000000]";
	mes "Please comeback when you are ready";
	close;
}
	
  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  57
  • Reputation:   5
  • Joined:  11/19/13
  • Last Seen:  

lol...sprite or script?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  14
  • Reputation:   0
  • Joined:  06/16/15
  • Last Seen:  

Thank you so much!

This script is Great!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...