summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-03-17 00:34:08 +0100
committerReid <reidyaro@gmail.com>2016-03-17 00:34:08 +0100
commit2d945f268a10c710067cac8992840c15b06e6824 (patch)
tree45a76192d8ef18afd585c38981ee23778aa63e80
parent9503652425856abf3577982d94b17807722710b9 (diff)
downloadserverdata-2d945f268a10c710067cac8992840c15b06e6824.tar.gz
serverdata-2d945f268a10c710067cac8992840c15b06e6824.tar.bz2
serverdata-2d945f268a10c710067cac8992840c15b06e6824.tar.xz
serverdata-2d945f268a10c710067cac8992840c15b06e6824.zip
Add empty robin NPC on the library.
-rw-r--r--db/constants.conf1
-rw-r--r--npc/001-2-4/_import.txt1
-rw-r--r--npc/001-2-4/robin.txt17
3 files changed, 19 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf
index 889456fe..efa08ca8 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -3778,6 +3778,7 @@ constants_db: {
NPC_QPID: 140
NPC_JANUS: 141
NPC_CHRISTOPHER: 142
+ NPC_ROBIN: 143
NPC_ALIGE: 401
NPC_ORC_SAILOR: 402
NPC_RATTO_SAILOR: 403
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;
+}