diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:50:51 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:54:40 +0530 |
commit | b24b79b3d4f391c415268af3db2d268214bcfd70 (patch) | |
tree | 1717aeb9ee9c996e53ad4ac2a4376f8ce45476e1 /npc/pre-re/jobs/1-1/acolyte.txt | |
parent | 4d139eb924e63f88065071de722ddc39465cd5e3 (diff) | |
download | hercules-b24b79b3d4f391c415268af3db2d268214bcfd70.tar.gz hercules-b24b79b3d4f391c415268af3db2d268214bcfd70.tar.bz2 hercules-b24b79b3d4f391c415268af3db2d268214bcfd70.tar.xz hercules-b24b79b3d4f391c415268af3db2d268214bcfd70.zip |
Script Standardization: changed select format in pre-re folder
Diffstat (limited to 'npc/pre-re/jobs/1-1/acolyte.txt')
-rw-r--r-- | npc/pre-re/jobs/1-1/acolyte.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/pre-re/jobs/1-1/acolyte.txt b/npc/pre-re/jobs/1-1/acolyte.txt index 9f4ab27d4..60726edb5 100644 --- a/npc/pre-re/jobs/1-1/acolyte.txt +++ b/npc/pre-re/jobs/1-1/acolyte.txt @@ -88,7 +88,7 @@ prt_church,184,41,4 script Cleric#aco 1_M_PASTOR,{ mes "[Father Mareusis]"; mes "What is it that you seek?"; next; - switch(select("Father, I want to be a Acolyte.:Acolyte Requirements.:Just looking around.")) { + switch(select("Father, I want to be a Acolyte.", "Acolyte Requirements.", "Just looking around.")) { case 1: mes "[Father Mareusis]"; if (BaseJob == Job_Acolyte) { @@ -104,7 +104,7 @@ prt_church,184,41,4 script Cleric#aco 1_M_PASTOR,{ mes "wish to become"; mes "a servant of God?"; next; - if (select("Yes Father, I do.:Nope, I lied.") == 1) { + if (select("Yes Father, I do.", "Nope, I lied.") == 1) { mes "[Father Mareusis]"; mes "Good. I accept " + strcharinfo(0) + "'s will to become an Acolyte. You understand that you must do penance before you can become a servant of God, right?"; next; |