summaryrefslogtreecommitdiff
path: root/npc/001-2-22/chest.txt
blob: e20a00da25776063df6e7f10833571dcbc48837c (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
// Evol scripts.
// Authors:
//    4144
//    Reid
// Description:
//    A box with clothes for new players.

001-2-22,51,37,0	script	Chest#Artis	NPC_CHEST_BIG,{

    .dir = 2;
    initnpctimer;
    startnpctimer;
    close;

OnTimer220:
    stopnpctimer;
    if (.dir == 2) .dir = 4;
    if (.dir == 6) .dir = 0;
    end;

L_Quit:
    .dir = 6;
    initnpctimer;
    startnpctimer;
    close;

OnInit:
    .distance = 2;
    end;
}