diff options
author | Reid <reidyaro@gmail.com> | 2015-06-29 02:14:28 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-06-29 02:14:28 +0200 |
commit | d99be6f946f6afcfe33cd09555c552f3ef9e1fd1 (patch) | |
tree | 59db1be6e59e8664fdd846a282a0e70b1278605f | |
parent | 2c4414d7b6605f9325aff7b36ed73d96e274a218 (diff) | |
download | serverdata-d99be6f946f6afcfe33cd09555c552f3ef9e1fd1.tar.gz serverdata-d99be6f946f6afcfe33cd09555c552f3ef9e1fd1.tar.bz2 serverdata-d99be6f946f6afcfe33cd09555c552f3ef9e1fd1.tar.xz serverdata-d99be6f946f6afcfe33cd09555c552f3ef9e1fd1.zip |
Add Lozerk (sword trainer) empty NPC.
-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 33849d8a5..58ac598b0 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 000000000..04ae4d192 --- /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; +} + |