summaryrefslogtreecommitdiff
path: root/npc/kafras/functions_kafras.txt
diff options
context:
space:
mode:
authorDastgir <dastgirpojee@rocketmail.com>2016-01-16 20:47:02 +0530
committerDastgir <dastgirpojee@rocketmail.com>2016-01-17 17:44:32 +0530
commit20f6d1a9d0448869c80510c9be58c9bf30ee23bb (patch)
treeda2886ae3e88737e914c1d35ac0b7ce0c70f322e /npc/kafras/functions_kafras.txt
parent67eb36ab193d7258e9f225891474c2914d1bba64 (diff)
downloadhercules-20f6d1a9d0448869c80510c9be58c9bf30ee23bb.tar.gz
hercules-20f6d1a9d0448869c80510c9be58c9bf30ee23bb.tar.bz2
hercules-20f6d1a9d0448869c80510c9be58c9bf30ee23bb.tar.xz
hercules-20f6d1a9d0448869c80510c9be58c9bf30ee23bb.zip
Script Standardization: changed select format in kafras folder
Diffstat (limited to 'npc/kafras/functions_kafras.txt')
-rw-r--r--npc/kafras/functions_kafras.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/kafras/functions_kafras.txt b/npc/kafras/functions_kafras.txt
index e50264c9d..3155c5df8 100644
--- a/npc/kafras/functions_kafras.txt
+++ b/npc/kafras/functions_kafras.txt
@@ -388,7 +388,7 @@ function script F_KafCart {
mes "fee is "+getarg(1)+" zeny. Would";
mes "you like to rent a Pushcart?";
next;
- if (select("Rent a Pushcart.:Cancel") == 2)
+ if (select("Rent a Pushcart.", "Cancel") == 2)
return 0;
if (Zeny < getarg(1)) {
mes getarg(2);
@@ -501,7 +501,7 @@ function script F_SetKafCode {
if (#kafra_code) {
mes "Your storage is protected with a password. What would you do now?";
next;
- switch (select("Change old password -> 5000z:Remove storage password -> 1000z:Cancel")) {
+ switch (select("Change old password -> 5000z", "Remove storage password -> 1000z", "Cancel")) {
case 1:
mes getarg(0);
mes "At first, please enter your ^0000FFold password^000000.";
@@ -549,7 +549,7 @@ function script F_SetKafCode {
mes getarg(1)+" proudly presents you a new service:";
mes "Additional storage protection with a password.";
next;
- switch (select("Set new password -> 5000z:Cancel")) {
+ switch (select("Set new password -> 5000z", "Cancel")) {
case 1: callsub S_SET,getarg(0),getarg(1); break;
case 2: break;
}