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/advanced_refiner.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/advanced_refiner.txt')
-rw-r--r-- | npc/merchants/advanced_refiner.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/merchants/advanced_refiner.txt b/npc/merchants/advanced_refiner.txt index fe69a8a3a..e75912f4c 100644 --- a/npc/merchants/advanced_refiner.txt +++ b/npc/merchants/advanced_refiner.txt @@ -122,7 +122,7 @@ S_RefineValidate: mes "To refine that, you'll need to have one ^ff9999" + getitemname(getarg(1)) + "^000000 and " + getarg(2) + " zeny."; mes "Would you like to continue?"; next; - if(select("Yes:No") == 1) { + if(select("Yes", "No") == 1) { if (getequippercentrefinery(getarg(3)) < 100) { if (getarg(0)) { mes "[Suhnbi]"; @@ -139,7 +139,7 @@ S_RefineValidate: mes "^ff0000Besides, the equipment will break!^000000"; mes "Are you sure you still want to continue?"; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Suhnbi]"; mes "Good."; mes "Because if the weapon breaks from unreasonable refining, then I get a bad mood, too."; @@ -155,7 +155,7 @@ S_RefineValidate: //mes "Everything will disappear. As in... GONE!"; mes "Do you really wish to continue?"; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Suhnbi]"; mes "What nonsense. You waste my precious time."; mes "Get lost, punk."; |