summaryrefslogtreecommitdiff
path: root/npc/001-2-4/terry.txt
blob: feaa0dfa5488eeb6e085184f05662763c9919cc6 (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:
    .sex = G_MALE;
    .distance = 2;
    .dir = 2;
    end;

L_Quit:
    .dir = 2;
    close;
}