summaryrefslogtreecommitdiff
path: root/world/map/npc/004-5/chest.txt
blob: 1d0e9d327ab57360cb9675179f5104b78d665874 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
}