diff options
author | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
commit | 1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch) | |
tree | 4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/cities/einbroch.txt | |
parent | e68aa1f74d315f7bf24d7c8829002d0031b23539 (diff) | |
parent | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff) | |
download | hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.gz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.bz2 hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.xz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.zip |
Merge pull request #1110 from dastgir/22-ScriptClean-Phase2
Script CleanUp Phase 2
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"; |