summaryrefslogtreecommitdiff
path: root/world/map/npc/004-5/chest.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/004-5/chest.txt')
-rw-r--r--world/map/npc/004-5/chest.txt27
1 files changed, 0 insertions, 27 deletions
diff --git a/world/map/npc/004-5/chest.txt b/world/map/npc/004-5/chest.txt
deleted file mode 100644
index 92b55e6c..00000000
--- a/world/map/npc/004-5/chest.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-004-5,89,67,0|script|Old Chest#crastur|111
-{
- set @npc_distance, 1;
- callfunc "PCtoNPCRange";
- if(@npc_check) end;
- set @spants_state, ((QUEST_WG_state & NIBBLE_2_MASK) >> NIBBLE_2_SHIFT);
- if(@spants_state > 5) goto L_Looted;
- if(@spants_state != 5) goto L_Unknown;
- set @spants_state, 6;
- getitem "Bandana", 1;
- set Zeny, (Zeny + rand(8000,20000)); // give some random loot
- mes "This must be the treasure that Crastur was talking about.";
- mes "You see a pile of gold and a Bandana on top.";
- set QUEST_WG_state, (QUEST_WG_state & ~(NIBBLE_2_MASK) | (@spants_state << NIBBLE_2_SHIFT));
- goto L_Close;
-
-L_Looted:
- mes "You have already looted this chest.";
- goto L_Close;
-
-L_Unknown:
- mes "You have no idea how to open this chest.";
- goto L_Close;
-
-L_Close:
- close;
-}