blob: 381dde7b542b136359e280984abeb0497a8d2433 (
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
32
33
34
35
36
37
38
39
40
41
|
// Evol scripts.
// Authors:
// 4144, Reid
// Description:
// A box with clothes for every new player.
// Variable:
// ShipQuests_Arpan
// Values:
// 1: Talked to Arpan. Need to get cloths
// 2: Got cloths
000-2-1.gat,41,37,0 script Box 317;2,{
set @q, geta2(ShipQuests, ShipQuests_Arpan);
if (getnpcdir ("") == 4) goto l_Give;
setnpcdir 2;
initnpctimer;
startnpctimer;
close;
l_Give:
if (@q > 1) goto l_Close;
seta2 ShipQuests, ShipQuests_Arpan, 2;
getitem "WornShirt", 1;
getitem "WornShorts", 1;
close;
l_Close:
setnpcdir 6;
initnpctimer;
startnpctimer;
close;
OnTimer220:
stopnpctimer;
if (getnpcdir ("") == 2) setnpcdir 4;
if (getnpcdir ("") == 6) setnpcdir 0;
end;
}
|