blob: c206b8c3f750d8577dab1bcee7ee998f8b44c727 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Evol scripts.
// Authors:
// Reid
// Description:
// Sword trainer from the Legion of Aemil guild.
001-2-33,34,33,0 script Lozerk NPC_DEMON_MALE_SWORD,{
mesn;
mesq l("You can't join the sword training clothed that way.");
goto L_Close;
L_Close:
close;
OnInit:
.sex = G_MALE;
.distance = 2;
end;
}
|