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/genetic.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/genetic.txt')
-rw-r--r-- | npc/jobs/3-2/genetic.txt | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/npc/jobs/3-2/genetic.txt b/npc/jobs/3-2/genetic.txt index 68011fa89..ff8503e1b 100644 --- a/npc/jobs/3-2/genetic.txt +++ b/npc/jobs/3-2/genetic.txt @@ -17,23 +17,8 @@ alde_alche,35,186,5 script Alchemist Union Member 805,{ - if ((Class >= 4023) && (Class <= 4045)){ - mes "[Alchemist Union Member]"; - mes "Our Alchemist Union brings up many junior alchemists with various promotions and investigations."; - next; - mes "[Alchemist Union Member]"; - mes "They have spread to all corners of Rune-Midgart and were active in many fields like sciences or special item production methods."; - next; - mes "[Alchemist Union Member]"; - mes "We call the members of our new union ^3131FF'Geneticists'^000000."; - next; - mes "[Alchemist Union Member]"; - mes "Geneticists are the ones who have reached their peak potential in the world of Alchemy. They are the ones who currently spearhead alchemy throughout all of Rune-Midgart."; - close; - } - if ((BaseLevel == 99) && (JobLevel > 49)){ - if (Class == Job_Alchemist || Class == Job_Creator){ + if (Class == Job_Alchemist || Class == Job_Creator || Job_Baby_Alchemist){ if (SkillPoint == 0){ if (job_gen == 0){ mes "[Alchemist Union Member]"; @@ -563,7 +548,7 @@ job3_gen01,25,58,3 script Devries#gen 865,{ mes "Bubbles!"; mes "Good news!"; next; - if (Class == Job_Alchemist || Class == Job_Creator && ((JobLevel > 49) && (SkillPoint == 0) && (BaseLevel > 98))){ + if (Class == Job_Alchemist || Class == Job_Creator || Job_Baby_Alchemist && ((JobLevel > 49) && (SkillPoint == 0) && (BaseLevel > 98))){ if (checkcart() == 0){ mes "[Devries]"; mes "Put that heavy and dirty cart away. On such a happy moment, that thing will just ruin it."; @@ -606,7 +591,10 @@ job3_gen01,25,58,3 script Devries#gen 865,{ mes "[Devries]"; mes "Congratulations, Bubbles"; mes "From now on, you are a Geneticist!!"; - if (Class == Job_Alchemist){ + if(Class == Job_Baby_Alchemist){ + jobchange Job_Baby_Genetic; + } + else if (Class == Job_Alchemist){ jobchange Job_Genetic; } else { jobchange Job_Genetic_T; |