diff options
author | Streusel <advance_me@hotmail.de> | 2013-02-13 16:53:09 -0800 |
---|---|---|
committer | Streusel <advance_me@hotmail.de> | 2013-02-13 16:53:09 -0800 |
commit | a849f62a06db7c976a50db41373bd3fc6bcadb45 (patch) | |
tree | fa1ba0fd9eab7b86f35d667c2b77910d88317524 /npc/re/jobs/1-1/acolyte.txt | |
parent | f79e5b0e8e2939b2e8939a0cf1aba682e6877ba9 (diff) | |
download | hercules-a849f62a06db7c976a50db41373bd3fc6bcadb45.tar.gz hercules-a849f62a06db7c976a50db41373bd3fc6bcadb45.tar.bz2 hercules-a849f62a06db7c976a50db41373bd3fc6bcadb45.tar.xz hercules-a849f62a06db7c976a50db41373bd3fc6bcadb45.zip |
-Updated Job NPC's to allow Baby Novice to change into other Baby 1-1 classes
-Updated Job npc's to use callfunc
Diffstat (limited to 'npc/re/jobs/1-1/acolyte.txt')
-rw-r--r-- | npc/re/jobs/1-1/acolyte.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/re/jobs/1-1/acolyte.txt b/npc/re/jobs/1-1/acolyte.txt index 4808879be..1ae78385c 100644 --- a/npc/re/jobs/1-1/acolyte.txt +++ b/npc/re/jobs/1-1/acolyte.txt @@ -61,7 +61,7 @@ prt_church,184,41,4 script Cleric#aco 60,{ next; switch(select("Change your job to acolyte.:Ask the requirements to be an acolyte.:Quit it.")) { case 1: - if(Class != Job_Novice) { + if(Class != Job_Novice && Class != Job_Baby) { mes "[Father Mareusis]"; if(Class == Job_Acolyte) { mes "Are you feeling okay today? I can tell by your attire that you are already an Acolyte. You're not joking around, are you?"; @@ -85,7 +85,7 @@ prt_church,184,41,4 script Cleric#aco 60,{ next; mes "[Father Mareusis]"; mes "Always remember to be thankful to God, who takes care of us all the time. In chaos and times of difficulty, face your hardships with unwavering faith."; - jobchange Job_Acolyte; + callfunc "Job_Change",Job_Acolyte; getitem 1545,1; // N_Mace next; mes "[Father Mareusis]"; |