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/einbroch.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/einbroch.txt')
-rw-r--r-- | npc/cities/einbroch.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/cities/einbroch.txt b/npc/cities/einbroch.txt index 8fd4c3119..741d5b27a 100644 --- a/npc/cities/einbroch.txt +++ b/npc/cities/einbroch.txt @@ -58,7 +58,7 @@ einbroch,175,196,5 script Morei#ein 4_M_EINMAN2,{ mes "Would you like to go"; mes "back to ground level?"; next; - switch(select("Yes.:No.")) { + switch(select("Yes.", "No.")) { case 1: mes "[Morei]"; mes "I see."; @@ -120,7 +120,7 @@ function script EinTower { mes "Einbroch Tower admission"; mes "and an Apple to snack on."; next; - switch(select("Tower Admission Only:Apple Combo Set:Cancel")) { + switch(select("Tower Admission Only", "Apple Combo Set", "Cancel")) { case 1: if (Zeny < 10) { mes "[" + getarg(0) + "]"; @@ -203,7 +203,7 @@ einbroch,232,272,3 script Train Station Staff#ein1::EinbrochTrain 4_M_EIN_SOLDIE mes "to Einbech line is 200 zeny."; mes "Would you like to buy a ticket?"; next; - switch(select("Yes.:No.:About the Environment...")) { + switch(select("Yes.", "No.", "About the Environment...")) { case 1: if (Zeny > 199) { mes "[Staff]"; @@ -326,7 +326,7 @@ einbroch,40,116,1 script Airship Engineer#ein-1 4_M_EINMAN,{ mes "her tune-up and now she's"; mes "sleeping! J-just step away!"; next; - switch(select("Who's Burielle?:Sorry about That.")) { + switch(select("Who's Burielle?", "Sorry about That.")) { case 1: mes "[Airship Engineer]"; mes "Burielle is the prettiest"; @@ -336,7 +336,7 @@ einbroch,40,116,1 script Airship Engineer#ein-1 4_M_EINMAN,{ mes "with my healing hands, she'll"; mes "conquer the skies again!"; next; - switch(select("Ah~:Uh huh...")) { + switch(select("Ah~", "Uh huh...")) { case 1: mes "["+strcharinfo(0)+"]"; mes "Ah~"; @@ -825,7 +825,7 @@ ein_in01,206,224,3 script Hotel Employee#ein 4_M_EINMAN,{ next; } else { - switch(select("Save:Take Rest - 5,000 zeny:Cancel")) { + switch(select("Save", "Take Rest - 5,000 zeny", "Cancel")) { case 1: mes "[Hotel Employee]"; mes "Your Respawn Point"; |