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/gemstone.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/gemstone.txt')
-rw-r--r-- | npc/merchants/gemstone.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/merchants/gemstone.txt b/npc/merchants/gemstone.txt index b114344a1..6028d9ddb 100644 --- a/npc/merchants/gemstone.txt +++ b/npc/merchants/gemstone.txt @@ -45,7 +45,7 @@ payon,173,238,5 script Jade#pay 4_M_SAGE_A,{ mes "change them to Gemstones"; mes "of a different color."; next; - switch(select("Blue Gemstones into Red ones!:Red Gemstones into Yellow ones!:Yellow Gemstones into Blue ones!")) { + switch(select("Blue Gemstones into Red ones!", "Red Gemstones into Yellow ones!", "Yellow Gemstones into Blue ones!")) { case 1: callsub S_TradeGems,717,716; case 2: callsub S_TradeGems,716,715; case 3: callsub S_TradeGems,715,717; @@ -71,7 +71,7 @@ S_TradeGems: mes "that you currently have."; mes "What do you want to do?"; next; - switch(select("Give me as many as you can.:I want to set the amount.:I quit.")) { + switch(select("Give me as many as you can.", "I want to set the amount.", "I quit.")) { case 1: delitem getarg(0),.@gems * 2; getitem getarg(1),.@gems; |