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/cash_hair.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/cash_hair.txt')
-rw-r--r-- | npc/merchants/cash_hair.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/merchants/cash_hair.txt b/npc/merchants/cash_hair.txt index 4f92a4135..6d0d1f3d5 100644 --- a/npc/merchants/cash_hair.txt +++ b/npc/merchants/cash_hair.txt @@ -93,7 +93,7 @@ itemmall,19,74,5 script Stylist#cash 4_F_02,{ mes "if you'd like me to"; mes "change your hairstyle?"; next; - if(select("Change Hairstyle:Don't Change") == 1) { + if(select("Change Hairstyle", "Don't Change") == 1) { if (countitem(New_Style_Coupon) > 0) { mes "[Kaniki]"; mes "Great, you brought"; @@ -102,7 +102,7 @@ itemmall,19,74,5 script Stylist#cash 4_F_02,{ mes "did you want to have?"; next; if (Sex == 1) { - if(select("Emergency Heal Perm:Aura Blade Cut") == 1) { + if(select("Emergency Heal Perm", "Aura Blade Cut") == 1) { delitem New_Style_Coupon,1; // New_Style_Coupon setlook 1,24; }else{ @@ -110,7 +110,7 @@ itemmall,19,74,5 script Stylist#cash 4_F_02,{ setlook 1,25; } }else{ - if(select("Assumptio Perm:Soul Changer Cut") == 1) { + if(select("Assumptio Perm", "Soul Changer Cut") == 1) { delitem New_Style_Coupon,1; // New_Style_Coupon setlook 1,24; }else{ |