blob: b695f1bc0cf981afe3bd4b82b3b5e241e493415a (
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.
// Author:
// Reid
// Description:
// Chief of the Legion of Aemil of the city of Artis.
001-2-40,36,46,0 script Trozz#001-2-40 NPC_HUMAN_MALE_CHIEF_ARTIS_LEGION,{
mesn;
mesq l("Hi. I am Trozz, and I am the chief of legion training in Artis.");
next;
mesn;
mesq l("If you want to challenge someone for a friendly match, you are at the right place.");
next;
mesn;
mesq l("But if you need to deal with more burocratic stuff, go talk to Q'Anon. He is the boss here.");
close;
OnInit:
.sex = G_MALE;
.distance = 4;
end;
}
|