diff options
Diffstat (limited to 'npc/004-5/chest.txt')
-rwxr-xr-x | npc/004-5/chest.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/npc/004-5/chest.txt b/npc/004-5/chest.txt new file mode 100755 index 00000000..0054571e --- /dev/null +++ b/npc/004-5/chest.txt @@ -0,0 +1,26 @@ +004-5,89,67,0 script Old Chest#crastur NPC111,{ + @npc_distance = 1; + callfunc "PCtoNPCRange"; + if(@npc_check) end; + @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; + @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."; + 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; +} |