diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-28 16:23:03 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-28 16:23:03 +0000 |
commit | 2aa1029edac5ac7cfb19de5ca5a1050ac5b8f87c (patch) | |
tree | 36e153e22a827a217c0ed41793780e575df0c69c /npc/jobs/3-2/royal_guard.txt | |
parent | 2fd1a0b731da7c56c6d49dae9bdb0cbeb5e76b6d (diff) | |
download | hercules-2aa1029edac5ac7cfb19de5ca5a1050ac5b8f87c.tar.gz hercules-2aa1029edac5ac7cfb19de5ca5a1050ac5b8f87c.tar.bz2 hercules-2aa1029edac5ac7cfb19de5ca5a1050ac5b8f87c.tar.xz hercules-2aa1029edac5ac7cfb19de5ca5a1050ac5b8f87c.zip |
- Added ability for all 2nd baby classes to change into their 3rd baby job doing the 3rd job change quest. bugreport:5789
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16163 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/3-2/royal_guard.txt')
-rw-r--r-- | npc/jobs/3-2/royal_guard.txt | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/npc/jobs/3-2/royal_guard.txt b/npc/jobs/3-2/royal_guard.txt index 1dd0222d5..a7dc7591e 100644 --- a/npc/jobs/3-2/royal_guard.txt +++ b/npc/jobs/3-2/royal_guard.txt @@ -21,12 +21,7 @@ prt_castle,48,163,3 script Gentleman#4386457567 57,{ mes "You have too much items, please make more light."; close; } - if(upper == 2 || upper == 6) { - mes "[Middle-aged Gentleman]"; - mes "Cute child, what is your name eh?"; - close; - } - if(Class == 4066 || Class == 4073) { + if(Class == 4066 || Class == 4073 || Class == 4102) { mes "[Middle-aged Gentleman]"; mes "Uh? What am I doing? I came here for an errand..."; next; @@ -43,7 +38,7 @@ prt_castle,48,163,3 script Gentleman#4386457567 57,{ mes "You are dragging something. If you're riding something you better dismount it before proceeding."; close; } - if(Class != 14 && Class != 4015) { + if((Class != 14) && (Class != 4015) && (Class != 4037)) { mes "[Middle-aged Gentleman]"; mes "I don't have anything to say to you. Find another person."; close; @@ -340,7 +335,7 @@ glast_01,240,366,5 script Memory of King Schmidtz 844,{ mes "You are too heavy. Make yourself lighter."; close; } - if(job_royal == 5 && (Class == 14 || Class == 4015)) { + if(job_royal == 5 && (Class == 14 || Class == 4015 || Class == 4037)) { if(countitem(6275) < 1) { mes "^000099You seem to have lost the shield. Go back to Heinrich and ask for help^000000."; close; @@ -414,10 +409,14 @@ glast_01,240,366,5 script Memory of King Schmidtz 844,{ specialeffect2 EF_LORD; delitem 6275,1; erasequest 12094; - if(class == 14) + if(class == 4037){ + jobchange 4102; + } + else if(class == 14){ jobchange 4066; - else + }else{ jobchange 4073; + } getitem 5757,1; getitem 2795,1; end; |