diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-19 08:07:50 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-19 08:07:50 +0000 |
commit | 89998918cc073c700830eb68b75fea72ace1234e (patch) | |
tree | c3d15b75c0561637675f2dc6f8323aedca9a259b /npc/jobs/1-1/acolyte.txt | |
parent | 46dc548da19f0b5875233aeeee2155a24675664c (diff) | |
download | hercules-89998918cc073c700830eb68b75fea72ace1234e.tar.gz hercules-89998918cc073c700830eb68b75fea72ace1234e.tar.bz2 hercules-89998918cc073c700830eb68b75fea72ace1234e.tar.xz hercules-89998918cc073c700830eb68b75fea72ace1234e.zip |
updated job quests.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7242 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/1-1/acolyte.txt')
-rw-r--r-- | npc/jobs/1-1/acolyte.txt | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/npc/jobs/1-1/acolyte.txt b/npc/jobs/1-1/acolyte.txt index 52a7a4207..c0b220c04 100644 --- a/npc/jobs/1-1/acolyte.txt +++ b/npc/jobs/1-1/acolyte.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= kobra_k88
//===== Current Version: =====================================
-//= 1.5
+//= 1.6
//===== Compatible With: =====================================
//= eAthena 1.0 +
//===== Description: =========================================
@@ -16,6 +16,7 @@ //= v1.3 Added Baby Class support [Lupus]
//= v1.4 Optimised and moved first checker to Jfunc1-1 [massdriller]
//= 1.5 Now saves/restores all quest skills [Lupus]
+//= 1.6 Merged back JFunc [Lupus]
//============================================================
@@ -31,7 +32,33 @@ prt_church.gat,184,41,4 script Father Mareusis 60,{ M_0:
mes "[Father Mareusis]";
- callfunc "Aco_check";
+ if(BaseJob == Job_Acolyte) {
+ mes "Are you feeling okay?....";
+ emotion e_hmm;
+ next;
+ mes "[Father Mareusis]";
+ mes "...your attire...";
+ next;
+ mes "[Father Mareusis]";
+ mes "You're already are an Acolyte.....";
+ next;
+ mes "[Father Mareusis]";
+ mes "You are not joking with me, are you? Hoho!!..kids these days.";
+ emotion e_heh;
+ close;
+ }
+ if(BaseJob != Job_Novice) {
+ mes "I am sorry child. You have already devoted your life to another profession. I am afraid that you will no longer be able to devote it to God.";
+ close;
+ }
+ if(JobLevel < 10) {
+ mes "My child you do not yet possess the necessary skills to serve the lord.";
+ mes "Please come back when your faith in God has become stronger";
+ next;
+ mes "[Father Mareusis]";
+ mes "May God bless you.";
+ close;
+ }
mes "Do you truly wish to become a servant of God?";
next;
menu "Yes, Father, I do.",sM_0,"Nope, I lied.",sM_1;
|