diff options
author | Wushin <pasekei@gmail.com> | 2014-11-01 20:05:23 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2014-11-01 20:05:23 -0500 |
commit | a7bf0c72eabfe757c0c58cf575a29abeb01b749b (patch) | |
tree | fb4f21351c217cbad6c88fd479675363bd4e5081 /world/map/npc/004-5/chest.txt | |
parent | f356d8a54d567b5c6a21ae2a3f67bbcbb35de3b8 (diff) | |
parent | f8824adb305b804542a2ef4ebcdafa12dec9dcd3 (diff) | |
download | serverdata-a7bf0c72eabfe757c0c58cf575a29abeb01b749b.tar.gz serverdata-a7bf0c72eabfe757c0c58cf575a29abeb01b749b.tar.bz2 serverdata-a7bf0c72eabfe757c0c58cf575a29abeb01b749b.tar.xz serverdata-a7bf0c72eabfe757c0c58cf575a29abeb01b749b.zip |
Merge pull request #196 from mekolat/silkpants
Silkpants
Diffstat (limited to 'world/map/npc/004-5/chest.txt')
-rw-r--r-- | world/map/npc/004-5/chest.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/world/map/npc/004-5/chest.txt b/world/map/npc/004-5/chest.txt new file mode 100644 index 00000000..1d0e9d32 --- /dev/null +++ b/world/map/npc/004-5/chest.txt @@ -0,0 +1,31 @@ +004-5.gat,89,67,0|script|Old Chest#crastur|111, +{ + setarray @npc_loc, 89, 67, 1; + callfunc "PCtoNPCRange"; + if(@npc_check == 1) goto L_Closer; + 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_Closer: + mes "You need to move closer to open the chest."; + goto L_Close; + +L_Close: + close; +} |