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/merchants/old_pharmacist.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/merchants/old_pharmacist.txt')
-rw-r--r-- | npc/merchants/old_pharmacist.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/merchants/old_pharmacist.txt b/npc/merchants/old_pharmacist.txt index 37069f166..0cbbeda6d 100644 --- a/npc/merchants/old_pharmacist.txt +++ b/npc/merchants/old_pharmacist.txt @@ -47,7 +47,7 @@ alberta_in,16,28,4 script Pharmacist 1_M_PUBMASTER,{ mes "[Old Pharmacist]"; mes "Ummmm..."; mes "What brings you here...?"; - switch(select("Make Potion:Talk.:Mixing Information:Cancel")) { + switch(select("Make Potion", "Talk.", "Mixing Information", "Cancel")) { case 1: next; if (MaxWeight - Weight < 5000) { @@ -62,7 +62,7 @@ alberta_in,16,28,4 script Pharmacist 1_M_PUBMASTER,{ } else { mes "[Old Pharmacist]"; mes "You have all the stuff ready, right? Which one would you like?"; - switch(select("Red Potion.:Orange Potion.:Yellow Potion.:White Potion.:Blue Potion.:Green Potion.:Actually, I don't want anything.")) { + switch(select("Red Potion.", "Orange Potion.", "Yellow Potion.", "White Potion.", "Blue Potion.", "Green Potion.", "Actually, I don't want anything.")) { case 1: callsub L_Making,507,3,501; case 2: @@ -88,7 +88,7 @@ alberta_in,16,28,4 script Pharmacist 1_M_PUBMASTER,{ close; } mes "How many?"; - switch(select("Make as many as I can.:I want to choose an amount.:Actually, I don't want anything.")) { + switch(select("Make as many as I can.", "I want to choose an amount.", "Actually, I don't want anything.")) { case 1: next; if ((countitem(Red_Herb) < .@max) || (countitem(Yellow_Herb) < .@max) || (countitem(Empty_Bottle) < .@max) || (Zeny < .@max*3)) { @@ -218,7 +218,7 @@ L_Making: close; } mes "How many?"; - switch(select("Make as many as I can.:I want to choose an amount.:Actually, I don't want anything.")) { + switch(select("Make as many as I can.", "I want to choose an amount.", "Actually, I don't want anything.")) { case 1: next; if ((countitem(getarg(0)) < .@max*2) || (countitem(Empty_Bottle) < .@max) || (Zeny < .@max*getarg(1))) { |