diff options
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/lozerk.txt | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 33849d8a..58ac598b 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -9,6 +9,7 @@ npc: npc/001-1/doors.txt npc: npc/001-1/elmo.txt npc: npc/001-1/enora.txt npc: npc/001-1/harbours.txt +npc: npc/001-1/lozerk.txt npc: npc/001-1/panels.txt npc: npc/001-1/qonan.txt npc: npc/001-1/taree.txt diff --git a/npc/001-1/lozerk.txt b/npc/001-1/lozerk.txt new file mode 100644 index 00000000..04ae4d19 --- /dev/null +++ b/npc/001-1/lozerk.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Sword trainer from the Legion of Aemil guild. + +001-1,56,43,0 script Lozerk 120,{ + mesn; + mesq l("You can't join the sword training clothed that way."); + + goto L_Close; + +L_Close: + close; + +OnInit: + setnpcsex G_MALE; + setnpcdistance 2; + end; +} + |