summaryrefslogtreecommitdiff
path: root/npc/test/npc4.txt
blob: 781036671095ff936bf10c3a643383d453fbbd5b (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
// Evol scripts.
// Authors:
//    4144
// Description:
//    test npc4

test,25,20,0	script	npc4	801,{
    close;
OnTimer1000:
    if (isunitwalking())
    {
        initnpctimer;
        end;
    }
    movetonextpos;
    initnpctimer;
    end;
OnInit:
    initpath "move", 20, 20,
             "dir", 6, 0,
             "move", 25, 20,
             "wait", 3, 0,
             "move", 22, 10;
    initialmove;
    initnpctimer;
}