diff options
author | skyleo <leo-pflug@web.de> | 2016-09-01 00:28:19 +0200 |
---|---|---|
committer | skyleo <leo-pflug@web.de> | 2016-09-01 00:28:19 +0200 |
commit | c8e27db9bc8e0a6b3e7926360f36753741a56272 (patch) | |
tree | 79956adc8a584758aed4064d3aa9dd2d165269be | |
parent | 0f1d03f505fdc03533122db8ba19fa55f64f11b7 (diff) | |
download | hercules-c8e27db9bc8e0a6b3e7926360f36753741a56272.tar.gz hercules-c8e27db9bc8e0a6b3e7926360f36753741a56272.tar.bz2 hercules-c8e27db9bc8e0a6b3e7926360f36753741a56272.tar.xz hercules-c8e27db9bc8e0a6b3e7926360f36753741a56272.zip |
Fixed Mixed Solution No.3 Arc never being assigned and occurrence of questlog errors in map.
-rw-r--r-- | npc/pre-re/jobs/1-1/mage.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/pre-re/jobs/1-1/mage.txt b/npc/pre-re/jobs/1-1/mage.txt index 4d41a22fd..9236f62b5 100644 --- a/npc/pre-re/jobs/1-1/mage.txt +++ b/npc/pre-re/jobs/1-1/mage.txt @@ -117,7 +117,7 @@ geffen_in,164,124,4 script Mage Guildsman 2_F_MAGICMASTER,{ mes "[Mage Guildsman]"; mes "Now it's time for"; mes "me to give you the test."; - switch(rand(3)) { + switch(rand(0,3)) { case 1: mes "Make me a ^3355FFMixed Solution No. 1^000000"; mes "and bring it back to me."; @@ -220,9 +220,6 @@ geffen_in,164,124,4 script Mage Guildsman 2_F_MAGICMASTER,{ mes "Congratulations!"; mes "You are now a Mage!"; next; - callfunc "Job_Change",Job_Mage; - callfunc "F_ClearJobVar"; - Zeny += 50; if (questprogress(1005)) { completequest 1005; } @@ -235,6 +232,9 @@ geffen_in,164,124,4 script Mage Guildsman 2_F_MAGICMASTER,{ else { completequest 1008; } + callfunc "Job_Change",Job_Mage; + callfunc "F_ClearJobVar"; + Zeny += 50; mes "[Mage Guildsman]"; mes "'Welcome to My World~'"; mes "Heh heh, I just wanted to say that. You know, it's a quote from a well-known movie~"; |