diff options
author | Wombat <hpwombat@yahoo.com> | 2010-08-18 21:02:01 -0400 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2010-08-18 21:02:01 -0400 |
commit | 0b9235d0865509feb9ef97aa197204293cee0b1f (patch) | |
tree | 719ddcf0441486774d0b827fb5a36e7e0a5b7ec8 /npc/002-4_Desert_mines/chest.txt | |
parent | 75dfdd443d6dbe9bd556debeb1c50d3000d95967 (diff) | |
download | serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.gz serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.bz2 serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.xz serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.zip |
Low Level Tulimshar Release
News, Small Fixes, Tulimshar Related Quests, Sandstorm Mob Changes
Expensive Hurnscald Warp NPC
Diffstat (limited to 'npc/002-4_Desert_mines/chest.txt')
-rw-r--r-- | npc/002-4_Desert_mines/chest.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/002-4_Desert_mines/chest.txt b/npc/002-4_Desert_mines/chest.txt index e1825d0f..158b79fc 100644 --- a/npc/002-4_Desert_mines/chest.txt +++ b/npc/002-4_Desert_mines/chest.txt @@ -1,7 +1,8 @@ // 002-4.gat,93,37,0 script Treasure 111,{ - if( ChestQuest & 1) goto L_Finished; + + if (TMW_Quest >= 38) goto L_Finished; mes "[Chest]"; mes "Would you try to open it?"; @@ -16,10 +17,10 @@ L_Yes: getinventorylist; if (@inventorylist_count == 100 && countitem("TreasureKey") > 3) goto L_TooMany; mes "[Chest]"; - mes "You opened it and found a short sword!"; + mes "You opened it and found a short bow!"; delitem "TreasureKey", 3; - getitem "ShortSword", 1; - set ChestQuest, ChestQuest | 1; + getitem "ShortBow", 1; + set TMW_Quest, 38; close; L_Not_Enough: |