From eb1119ab1f298f41fadae2364305f2e3fa48014e Mon Sep 17 00:00:00 2001 From: Fate Date: Sat, 6 Jun 2009 08:32:51 +0000 Subject: Elanore quest status corruption autocorrection --- npc/001-1_Tulimshar/elanore.txt | 23 +++++++++++++++++++++++ npc/001-2_Tulimshar/omar.txt | 2 ++ npc/009-2_Hurnscald/wyara.txt | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) (limited to 'npc') diff --git a/npc/001-1_Tulimshar/elanore.txt b/npc/001-1_Tulimshar/elanore.txt index a1075fbc..e37dc63b 100644 --- a/npc/001-1_Tulimshar/elanore.txt +++ b/npc/001-1_Tulimshar/elanore.txt @@ -1,5 +1,20 @@ // +function script ElanoreFix { + set @Q_MASK, NIBBLE_1_MASK; + set @Q_SHIFT, NIBBLE_1_SHIFT; + + set @Q_STATUS_MAX, 3; // FIXME once level 3 magic was released + + set @Q_status, (QUEST_MAGIC2 & @Q_MASK) >> @Q_SHIFT; + if (@Q_status > @Q_STATUS_MAX) + set @Q_status, @STATUS_INITIAL; + + set QUEST_MAGIC2, + (QUEST_MAGIC2 & ~(@Q_MASK) + | (@Q_status << @Q_SHIFT)); +} + 001-1.gat,58,68,0 script Elanore#_M 108,{ set @has_magic, getskilllv(SKILL_MAGIC); @@ -18,6 +33,14 @@ set @STATUS_READY_TO_LEARN_CURE_POISON, 5; set @STATUS_LEARNED_CURE_POISON, 6; + callfunc "ElanoreFix"; + + // This operation works around an earlier possible corruption of this state + if (@Q_status > @Q_STATUS_MAX) + set @Q_status, @STATUS_INITIAL; + callsub S_update_var; + + if (sc_check(sc_poison)) goto L_CurePoison; diff --git a/npc/001-2_Tulimshar/omar.txt b/npc/001-2_Tulimshar/omar.txt index 2fd813ac..4f75574e 100644 --- a/npc/001-2_Tulimshar/omar.txt +++ b/npc/001-2_Tulimshar/omar.txt @@ -24,6 +24,7 @@ function script KadiyaSubquestConsts { 001-2.gat,70,60,0 script Omar 162,{ + callfunc "ElanoreFix"; callfunc "KadiyaSubquestConsts"; set @Q_status, @Q_kadiya_status; @@ -184,6 +185,7 @@ S_update_var: 001-2.gat,76,59,0 script _______Kadiya 174,{ + callfunc "ElanoreFix"; set @Q_MASK, NIBBLE_3_MASK; set @Q_SHIFT, NIBBLE_3_SHIFT; diff --git a/npc/009-2_Hurnscald/wyara.txt b/npc/009-2_Hurnscald/wyara.txt index 0e62fccb..114f569b 100644 --- a/npc/009-2_Hurnscald/wyara.txt +++ b/npc/009-2_Hurnscald/wyara.txt @@ -13,7 +13,7 @@ set @STATUS_PURIFY_OVER, 4; set @STATUS_MAX, @STATUS_PURIFY_OVER; - // This operation + // This operation works around an earlier possible corruption of this state if (@Q_status > @Q_STATUS_MAX) set @Q_status, @STATUS_INITIAL; callsub S_update_var; -- cgit v1.2.3-60-g2f50