blob: 065dec64b06f4916deaef1ca7c44420a4840afd5 (
plain) (
tree)
|
|
// 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.");
switch (.@q) {
case 0:
Exception("ERROR", RB_SPEECH|RB_ISFATAL);
case 17:
// Endtrail
mes "";
mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1;
break;
}
close;
OnInit:
.sex=G_MALE;
.distance=5;
end;
}
|