diff options
author | meko <mekolat@users.noreply.github.com> | 2015-09-29 12:32:48 -0400 |
---|---|---|
committer | meko <mekolat@users.noreply.github.com> | 2015-09-29 12:32:48 -0400 |
commit | 1fa42ac121792035ea777e18bb6105552b8299c0 (patch) | |
tree | 8b50ead6a5b75d2c8a52bfe762cef38c4e849cbe /world/map/npc/002-5/chest.txt | |
parent | aef74e905ea2abc818ffaa526f6c5e559f397509 (diff) | |
parent | a5816766ed870dd55170a4b66a75a1907021e421 (diff) | |
download | serverdata-1fa42ac121792035ea777e18bb6105552b8299c0.tar.gz serverdata-1fa42ac121792035ea777e18bb6105552b8299c0.tar.bz2 serverdata-1fa42ac121792035ea777e18bb6105552b8299c0.tar.xz serverdata-1fa42ac121792035ea777e18bb6105552b8299c0.zip |
Merge pull request #384 from wushin/tulimshar-quests
Some of the Tonori Area Quests
Diffstat (limited to 'world/map/npc/002-5/chest.txt')
-rw-r--r-- | world/map/npc/002-5/chest.txt | 14 |
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; } |