summaryrefslogtreecommitdiff
path: root/npc/001-2-4/terry.txt
blob: 168253312da478c1ce706e06d68f2064829f4914 (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
// Evol scripts.
// Authors:
//    Reid
// Description:
//    Librarian

001-2-4,51,35,4	script	Terry	NPC_TERRY,{
    mesn;
    mesq l("Hi.");
    next;
    mesq l("");
    goto L_Quit;

OnInit:
    setnpcsex G_MALE;
    setnpcdistance 2;
    setnpcdir 2;
    end;

L_Quit:
    setnpcdir 2;
    close;
}