diff options
author | Taylor Locke <kisuka@kisuka.com> | 2014-06-23 21:02:56 -0700 |
---|---|---|
committer | Taylor Locke <kisuka@kisuka.com> | 2014-06-23 21:02:56 -0700 |
commit | 78b0650b333051d28464d59e2133d7b9bf409ad8 (patch) | |
tree | bd86e5f9d9905842e93bc762ef7e466336a781bb /npc | |
parent | 1b459430c039a671ae0939ceadd0e2401ef690a0 (diff) | |
download | hercules-78b0650b333051d28464d59e2133d7b9bf409ad8.tar.gz hercules-78b0650b333051d28464d59e2133d7b9bf409ad8.tar.bz2 hercules-78b0650b333051d28464d59e2133d7b9bf409ad8.tar.xz hercules-78b0650b333051d28464d59e2133d7b9bf409ad8.zip |
Fixed issue with Biochemist that resulted in never regaining Bioethics.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/jobs/2-2a/Creator.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/jobs/2-2a/Creator.txt b/npc/jobs/2-2a/Creator.txt index 59f7e17e2..5ccde106a 100644 --- a/npc/jobs/2-2a/Creator.txt +++ b/npc/jobs/2-2a/Creator.txt @@ -4,7 +4,7 @@ //= Nana //= finished, optimized and tested by Lupus //===== Current Version: ===================================== -//= 1.4 +//= 1.5 //===== Description: ========================================= //= Advance Class jobchanger after kRO Normals. //===== Additional Comments: ================================= @@ -12,10 +12,11 @@ //= 1.2 Made numbers into constants. [Vicious] //= 1.3 Now saves/restores all the quest skills [Lupus] //= 1.4 Corrected check for the Bioethics quest variable [Haru] +//= 1.5 Fixed issue resulting in never regaining Bioethics. [Kisuka] //============================================================ valkyrie,53,50,3 script Biochemist#Valkyrie 2_M_DYEINGER,{ - if (ADVJOB == 0 || Upper != 1) { + if (ADVJOB == 0 && Upper != 1) { if (rand(1,10) > 4) { mes "[Biochemist]"; mes "Congratulations."; @@ -70,7 +71,7 @@ valkyrie,53,50,3 script Biochemist#Valkyrie 2_M_DYEINGER,{ mes "vast knowledge for the"; mes "right purposes."; close; - } else if (Class == Job_Creator && bioeth == 13 && getskilllv(AM_BIOETHICS) == 0) { + } else if (Class == Job_Creator && bioeth == 13 && getskilllv("AM_BIOETHICS") == 0) { mes "[Biochemist]"; mes "Ah, have you come to"; mes "retrieve the memories"; @@ -96,7 +97,7 @@ valkyrie,53,50,3 script Biochemist#Valkyrie 2_M_DYEINGER,{ mes "responsibility in using these"; mes "secrets for the right ends..."; next; - skill AM_BIOETHICS,1,0; + skill "AM_BIOETHICS",1,0; mes "[Biochemist]"; mes "Open your eyes..."; mes "Now that you have"; |