blob: 8a4c28e74c0f2903340bb3c826cc7f469c07bfac (
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
|
// TMW2/LoF scripts.
// Authors:
// Jesusalva
// Description:
// Part of player story
017-10,57,34,0 script Kenton NPC_KENTON,{
.@q=getq(General_Narrator);
mesn;
mesq l("Hello! My name is Kenton, and I'm in charge of Public Affairs of Land Of Fire.");
next;
mesn;
mesq l("You see, Pihro and Pyndragon, the mayors, are really busy people. They're developing a game or something as we speak.");
next;
mesn;
mesq l("So if you have any issue which would require the Mayor to see it, you'll need me first.");
close;
OnInit:
.sex=G_MALE;
.distance=5;
end;
}
|