summaryrefslogtreecommitdiff
path: root/npc/test/npc4.txt
blob: 4d54532b2b55c347618a95cb612f41c4d32a9808 (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
// 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,
             "emote", 3, 0,
             "class", 104, 0,
             "wait", 2, 0,
             "move", 22, 10,
             "rmove", 3, 3,
             "class", 801, 0,
             "wait", 1, 0,
             "warp", 22, 30,
             "goto", 0, 0;
    initialmove;
    initnpctimer;
}