diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:21:28 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:21:28 +0530 |
commit | 5235fb8353dfc68d71608bb26b4ba776974a0991 (patch) | |
tree | e767a578f48d383ce3dbdc031f4dd7728e8fc82f /npc/cities/yuno.txt | |
parent | 226f8b335500dbef9c647603f7e2cbe99b885956 (diff) | |
download | hercules-5235fb8353dfc68d71608bb26b4ba776974a0991.tar.gz hercules-5235fb8353dfc68d71608bb26b4ba776974a0991.tar.bz2 hercules-5235fb8353dfc68d71608bb26b4ba776974a0991.tar.xz hercules-5235fb8353dfc68d71608bb26b4ba776974a0991.zip |
Script Standardization: changed select format in cities folder
Diffstat (limited to 'npc/cities/yuno.txt')
-rw-r--r-- | npc/cities/yuno.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/cities/yuno.txt b/npc/cities/yuno.txt index ccc8a91ae..944f5e9ae 100644 --- a/npc/cities/yuno.txt +++ b/npc/cities/yuno.txt @@ -86,7 +86,7 @@ yuno,337,227,4 script Juno Granny#juno 8_F_GRANDMOTHER,{ mes "Here's ^3355FF1,000 zeny^000000."; mes "Do you accept this?"; next; - if (select("Accept:Do not accept") == 1) { + if (select("Accept", "Do not accept") == 1) { mes "[Granny]"; mes "*Giggle*"; mes "There you go~"; @@ -178,7 +178,7 @@ yuno,165,111,4 script Juno Sage#juno 2_F_MAGICMASTER,,{ mes "[Le Morpheus]"; mes "Whichever one you choose, you must spend ^3355FF5,000 zeny^000000. Now, please select one."; next; - if (select("Choose ^FF3355Red Herb^000000:Choose ^3355FFBlue Herb^000000.") == 1) { + if (select("Choose ^FF3355Red Herb^000000", "Choose ^3355FFBlue Herb^000000.") == 1) { mes "[Le Morpheus]"; mes "As you have chosen, you will forget everything, and remain in this virtual reality."; Zeny -= 5000; @@ -217,7 +217,7 @@ yuno,157,205,4 script Juno Artisan#juno 1_M_JOBGUIDER,{ mes "[Artisan]"; mes "Oh, hello there. Let me introduce myself. I am an artisan who tries to succeed the rights and duties of item makers in Juno."; next; - switch(select("About Powerful Equipment:About Unique Items:About Authentic Food:End Conversation")) { + switch(select("About Powerful Equipment", "About Unique Items", "About Authentic Food", "End Conversation")) { case 1: mes "[Artisan]"; mes "Let me suggest the ^3355FFHoly Guard^000000 and ^3355FFHoly Avenger^000000 which are special items for Crusaders."; @@ -379,7 +379,7 @@ yuno,142,183,5 script Airship Representative 4W_SAILOR,{ mes "[Airship Representative]"; mes "The teleport fee is 1,800 zeny, regardless of where you want to go. Please let me know your desired destination."; next; - switch(select("Prontera:Izlude:Geffen:Morroc:Payon:Alberta:Comodo:Cancel")) { + switch(select("Prontera", "Izlude", "Geffen", "Morroc", "Payon", "Alberta", "Comodo", "Cancel")) { case 1: callsub S_Warp,"prontera",116,72; case 2: if (RENEWAL) callsub S_Warp,"izlude",128,98; else callsub S_Warp,"izlude",94,103; case 3: callsub S_Warp,"geffen",120,39; |