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/einbech.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/einbech.txt')
-rw-r--r-- | npc/cities/einbech.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/cities/einbech.txt b/npc/cities/einbech.txt index 1a26d4342..2cc3d1305 100644 --- a/npc/cities/einbech.txt +++ b/npc/cities/einbech.txt @@ -46,7 +46,7 @@ einbech,172,113,4 script Nemuk#ein 4_M_EINMAN,{ mes "What do you think "; mes "of Einbech?"; next; - switch(select("It's fine.:It looks tough to live here.")) { + switch(select("It's fine.", "It looks tough to live here.")) { case 1: mes "[Nemuk]"; mes "Huh...?"; @@ -218,7 +218,7 @@ einbech,39,215,5 script Train Station Staff#ein3 4_M_EIN_SOLDIER,{ mes "200 zeny. Would"; mes "you like to ride?"; next; - switch(select("Yes.:No.")) { + switch(select("Yes.", "No.")) { case 1: if (Zeny > 199) { mes "[Staff]"; @@ -520,7 +520,7 @@ einbech,46,107,6 script Shena#ein::EinMonsters 4_F_EINOLD,{ mes "but I'm surprised that elder"; mes "people would know so much~"; next; - switch(select("What are you guys talking about?:Pass on by")) { + switch(select("What are you guys talking about?", "Pass on by")) { case 1: mes "[Shena]"; mes "Oh? Well, well!"; @@ -572,7 +572,7 @@ einbech,46,107,6 script Shena#ein::EinMonsters 4_F_EINOLD,{ next; } while(1) { - switch(select("Metalling:Mineral:Pit Man:Old Stove:Quit")) { + switch(select("Metalling", "Mineral", "Pit Man", "Old Stove", "Quit")) { case 1: mes "[Shena]"; mes "Well, the Metallings"; @@ -676,7 +676,7 @@ einbech,46,107,6 script Shena#ein::EinMonsters 4_F_EINOLD,{ mes "It's just an evil,"; mes "man-eating stove."; next; - switch(select("...That's it?:H-horrifying!")) { + switch(select("...That's it?", "H-horrifying!")) { case 1: mes "[Shena]"; mes "Now, you know the importance"; @@ -773,14 +773,14 @@ einbech,148,242,5 script Jung#ein 4_M_EINMAN,{ mes "the monsters in that place so"; mes "that you'll be better prepared."; next; - switch(select("Sure, why not?:No, thanks.")) { + switch(select("Sure, why not?", "No, thanks.")) { case 1: mes "[Jung]"; mes "Let's see. Ah, the monsters that are unique to the Mine Dungeon"; mes "are Noxious, Venomous, Pollcellio and Obsidian. Which one do you"; mes "want to know more about?"; next; - switch(select("Noxious and Venomous:Pollcellio:Obsidian")) { + switch(select("Noxious and Venomous", "Pollcellio", "Obsidian")) { case 1: mes "[Jung]"; mes "You know, no one seems"; @@ -905,7 +905,7 @@ einbech,148,246,5 script Franz#ein 4_M_REPAIR,{ mes "the Mine Dungeon or the fields"; mes "around here? Let's chat for a bit and maybe you'll learn something."; next; - switch(select("Okay, fine.:No, thanks.")) { + switch(select("Okay, fine.", "No, thanks.")) { case 1: mes "[Franz]"; mes "Ooh, have you heard"; @@ -915,7 +915,7 @@ einbech,148,246,5 script Franz#ein 4_M_REPAIR,{ mes "Which would you like to"; mes "know more about?"; next; - switch(select("Creature of Mine Dungeon:Town Incident")) { + switch(select("Creature of Mine Dungeon", "Town Incident")) { case 1: mes "[Franz]"; mes "The creature I'm talking about is Ungoliant, which also called the Master of the Caves around here."; |