diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:48:55 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:44:36 +0530 |
commit | d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83 (patch) | |
tree | 6d0724392fc7454f4f6e9ea924fe16824fe48747 /npc/merchants/gemstone.txt | |
parent | 20f6d1a9d0448869c80510c9be58c9bf30ee23bb (diff) | |
download | hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.tar.gz hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.tar.bz2 hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.tar.xz hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.zip |
Script Standardization: changed select format in merchants folder
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; |