diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:29:58 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:44:38 +0530 |
commit | 57ed698dc135be8222e127fe8e1d02c456e7f8b5 (patch) | |
tree | a4dc51c43d92ef569c4d2fb84a09fb5385abef95 /npc/other/mercenary_rent.txt | |
parent | d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83 (diff) | |
download | hercules-57ed698dc135be8222e127fe8e1d02c456e7f8b5.tar.gz hercules-57ed698dc135be8222e127fe8e1d02c456e7f8b5.tar.bz2 hercules-57ed698dc135be8222e127fe8e1d02c456e7f8b5.tar.xz hercules-57ed698dc135be8222e127fe8e1d02c456e7f8b5.zip |
Script Standardization: changed select format in other folder
Diffstat (limited to 'npc/other/mercenary_rent.txt')
-rw-r--r-- | npc/other/mercenary_rent.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/other/mercenary_rent.txt b/npc/other/mercenary_rent.txt index fe982564d..319b897d4 100644 --- a/npc/other/mercenary_rent.txt +++ b/npc/other/mercenary_rent.txt @@ -49,7 +49,7 @@ mes .@npc$ + " Mercenary Guild."; mes "What can I do for you?"; next; - switch(select("Hire Mercenary:Mercenary Info:Nothing:10th Grade Mercenaries")) { + switch(select("Hire Mercenary", "Mercenary Info", "Nothing", "10th Grade Mercenaries")) { case 1: mes "[Mercenary Manager]"; mes "You want to hire a"; @@ -73,7 +73,7 @@ mes "Base Level " + .@BaseLevel + " or higher, and"; mes "must pay the " + .@ZenyCost + ",000 zeny fee."; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Mercenary Manager]"; mes "Oh, really? Well, now"; mes "might not be a good time"; @@ -187,7 +187,7 @@ mes "Are you still interested in"; mes "forming this contract?"; next; - if (select("Yes:No") == 2) { + if (select("Yes", "No") == 2) { mes "[Mercenary Manager]"; mes "I understand... It takes"; mes "hard work and sacrifice to"; |