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/thief.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/thief.txt')
-rw-r--r-- | npc/re/jobs/1-1/thief.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/re/jobs/1-1/thief.txt b/npc/re/jobs/1-1/thief.txt index 5bf41fa87..4de378804 100644 --- a/npc/re/jobs/1-1/thief.txt +++ b/npc/re/jobs/1-1/thief.txt @@ -65,7 +65,7 @@ moc_prydb1,39,129,2 script Thief Guide#thief 69,{ mes "If you want to become a Thief, ask the sharp-eyed guy next to me."; close; } - if(Class != Job_Novice) { + if(Class != Job_Novice && Class != Job_Baby) { if(Class == Job_Thief) { mes "[Thief Guildsman]"; mes "Hey~ if you have any trouble, get it out to me anytime, huh?"; @@ -169,7 +169,7 @@ moc_prydb1,42,133,2 script Thief Guildsman#thief 118,{ mes "[Commander of Thief Guild]"; mes "'"+strcharinfo(0)+".'"; mes "'For those who are ready, the moonlight shall open the way. Now you are fully ready, I now officially allow you to become a member of the Thief Guild.'"; - jobchange Job_Thief; + callfunc "Job_Change",Job_Thief; set q_job_thief,0; getitem 13041,1; // N_Main_Gauche next; @@ -189,7 +189,7 @@ moc_prydb1,42,133,2 script Thief Guildsman#thief 118,{ mes "See you again."; close; } - if(Class != Job_Novice) { + if(Class != Job_Novice && Class != Job_Baby) { if(Class == Job_Thief) { mes "[Brad]"; mes "I don't have any special events now. So go on your way and come back later."; |