diff options
author | Wushin <pasekei@gmail.com> | 2015-05-18 15:51:07 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-05-18 15:51:07 -0500 |
commit | 8bc267dffaaa606baff35964c8ab46784e502e74 (patch) | |
tree | 83f8b87b02845b659537b0169b7978438dd69ae7 /world/map/npc/048-2/helperBookpages2.txt | |
parent | 67acaf80cbd638ab588be6190269424565e91e7a (diff) | |
parent | 2a30762a2304b1b9dceb4ca221aad7c84ce80fa4 (diff) | |
download | serverdata-8bc267dffaaa606baff35964c8ab46784e502e74.tar.gz serverdata-8bc267dffaaa606baff35964c8ab46784e502e74.tar.bz2 serverdata-8bc267dffaaa606baff35964c8ab46784e502e74.tar.xz serverdata-8bc267dffaaa606baff35964c8ab46784e502e74.zip |
Merge pull request #365 from mekolat/kaizei
Kaizei quests
Diffstat (limited to 'world/map/npc/048-2/helperBookpages2.txt')
-rw-r--r-- | world/map/npc/048-2/helperBookpages2.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/world/map/npc/048-2/helperBookpages2.txt b/world/map/npc/048-2/helperBookpages2.txt index 0b37e060..17de49d5 100644 --- a/world/map/npc/048-2/helperBookpages2.txt +++ b/world/map/npc/048-2/helperBookpages2.txt @@ -6,7 +6,6 @@ 048-2,94,86,0|script|Henriikka|363 { - set @investigate, ((QUEST_BlueSage & $@Q_BlueSageInvestigate_MASK) >> $@Q_BlueSageInvestigate_SHIFT); set @bookpages, ((QUEST_BlueSage & $@Q_BlueSageBookPages_MASK) >> $@Q_BlueSageBookPages_SHIFT); if (@bookpages == 31) goto L_Thank; @@ -51,9 +50,9 @@ L_Thank: goto L_Investigate; L_Investigate: - if ((@investigate == 3) || (@investigate == 4)) goto L_Ask_Visitor; - if ((@investigate == 5) || (@investigate == 8)) goto L_Ask_Helper; - if ((@investigate == 6) || (@investigate == 7) || (@investigate == 9) || (@investigate == 10)) goto L_Ask_Both; + if ((QL_BSAGE_INVESTIGATE == 3) || (QL_BSAGE_INVESTIGATE == 4)) goto L_Ask_Visitor; + if ((QL_BSAGE_INVESTIGATE == 5) || (QL_BSAGE_INVESTIGATE == 8)) goto L_Ask_Helper; + if ((QL_BSAGE_INVESTIGATE == 6) || (QL_BSAGE_INVESTIGATE == 7) || (QL_BSAGE_INVESTIGATE == 9) || (QL_BSAGE_INVESTIGATE == 10)) goto L_Ask_Both; goto L_Close; L_Ask_Visitor: @@ -85,7 +84,6 @@ L_Helper: goto L_Close; L_Close: - set @investigate, 0; set @bookpages, 0; close; } |