diff options
author | Reid <reidyaro@gmail.com> | 2016-03-17 00:34:08 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-03-17 00:34:08 +0100 |
commit | 2d945f268a10c710067cac8992840c15b06e6824 (patch) | |
tree | 45a76192d8ef18afd585c38981ee23778aa63e80 /npc | |
parent | 9503652425856abf3577982d94b17807722710b9 (diff) | |
download | serverdata-2d945f268a10c710067cac8992840c15b06e6824.tar.gz serverdata-2d945f268a10c710067cac8992840c15b06e6824.tar.bz2 serverdata-2d945f268a10c710067cac8992840c15b06e6824.tar.xz serverdata-2d945f268a10c710067cac8992840c15b06e6824.zip |
Add empty robin NPC on the library.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-2-4/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-2-4/robin.txt | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/npc/001-2-4/_import.txt b/npc/001-2-4/_import.txt index dff292a0..19db478e 100644 --- a/npc/001-2-4/_import.txt +++ b/npc/001-2-4/_import.txt @@ -1,4 +1,5 @@ npc: npc/001-2-4/mapflags.txt npc: npc/001-2-4/_warps.txt npc: npc/001-2-4/doors.txt +npc: npc/001-2-4/robin.txt npc: npc/001-2-4/terry.txt diff --git a/npc/001-2-4/robin.txt b/npc/001-2-4/robin.txt new file mode 100644 index 00000000..06930fdf --- /dev/null +++ b/npc/001-2-4/robin.txt @@ -0,0 +1,17 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Librarian + +001-2-4,27,33,0 script Robin NPC_ROBIN,{ + speech 4, + l("Hi."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} |