summaryrefslogtreecommitdiff
path: root/npc/functions/quests.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/quests.txt')
-rw-r--r--npc/functions/quests.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/quests.txt b/npc/functions/quests.txt
index fcdc13eb..657b7eff 100644
--- a/npc/functions/quests.txt
+++ b/npc/functions/quests.txt
@@ -37,8 +37,8 @@ function script elanore_decrease_exp {
function script ValonCount {
@valon_mob = 0;
- if (QL_VALON >= 2)
- @valon_mob = (QL_VALON - 2);
+ if (getq(CandorQuest_Valon) >= 2)
+ @valon_mob = (getq(CandorQuest_Valon) - 2);
@valon_count = ((STARTAREA & NIBBLE_2_MASK) >> NIBBLE_2_SHIFT);
return;
}
@@ -50,7 +50,7 @@ function script ResetValonCntMask {
function script ValonProgress {
ValonCount();
- if ((QL_VALON > 1) && (QL_VALON < 6))
+ if ((getq(CandorQuest_Valon) > 1) && (getq(CandorQuest_Valon) < 6))
message strcharinfo(0), $@ValonMobName$[@valon_mob] + ": " + @valon_count + "/" + $@ValonMobCnt[@valon_mob];
return;
}