summaryrefslogtreecommitdiff
path: root/world/map/npc/002-5/chest.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/002-5/chest.txt')
-rw-r--r--world/map/npc/002-5/chest.txt14
1 files changed, 2 insertions, 12 deletions
diff --git a/world/map/npc/002-5/chest.txt b/world/map/npc/002-5/chest.txt
index 2cdda691..5673bbde 100644
--- a/world/map/npc/002-5/chest.txt
+++ b/world/map/npc/002-5/chest.txt
@@ -1,10 +1,6 @@
-// Variables used: nibble 4 and 5 of QUEST_SouthTulimshar
-
002-5,93,37,0|script|Supply Chest|378
{
- set @state, ((QUEST_SouthTulimshar & BYTE_2_MASK) >> BYTE_2_SHIFT);
-
- if (@state >= 26) goto L_Finished;
+ if (QL_MINEALL >= 26) goto L_Finished;
mes "Hrmm... A supply chest.";
mes "Do you want to try to open it?";
@@ -22,8 +18,7 @@ L_Yes:
mes "You opened the chest and found a short bow!";
delitem "TreasureKey", 3;
getitem "ShortBow", 1;
- set @state, 26;
- callsub S_Update_Var;
+ set QL_MINEALL, 26;
goto L_Close;
L_Not_Enough:
@@ -39,10 +34,5 @@ L_TooMany:
goto L_Close;
L_Close:
- set @state, 0;
close;
-
-S_Update_Var:
- set QUEST_SouthTulimshar, (QUEST_SouthTulimshar & ~(BYTE_2_MASK) | (@state << BYTE_2_SHIFT));
- return;
}