diff options
author | Reid <reidyaro@gmail.com> | 2016-03-16 22:56:05 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-03-16 22:57:08 +0100 |
commit | 9503652425856abf3577982d94b17807722710b9 (patch) | |
tree | f31f4761a069f7d14fdccd868f5f22b6b616176d | |
parent | e51e31ef9870970563e5fa9637aefe95fff26e0b (diff) | |
download | serverdata-9503652425856abf3577982d94b17807722710b9.tar.gz serverdata-9503652425856abf3577982d94b17807722710b9.tar.bz2 serverdata-9503652425856abf3577982d94b17807722710b9.tar.xz serverdata-9503652425856abf3577982d94b17807722710b9.zip |
Add empty christopher NPC on the library.
-rw-r--r-- | db/constants.conf | 1 | ||||
-rw-r--r-- | npc/001-2-6/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-2-6/christopher.txt | 17 |
3 files changed, 19 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf index d851b625..889456fe 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3777,6 +3777,7 @@ constants_db: { NPC_RED: 139 NPC_QPID: 140 NPC_JANUS: 141 + NPC_CHRISTOPHER: 142 NPC_ALIGE: 401 NPC_ORC_SAILOR: 402 NPC_RATTO_SAILOR: 403 diff --git a/npc/001-2-6/_import.txt b/npc/001-2-6/_import.txt index 8659bad5..9b6ba85e 100644 --- a/npc/001-2-6/_import.txt +++ b/npc/001-2-6/_import.txt @@ -2,4 +2,5 @@ npc: npc/001-2-6/mapflags.txt npc: npc/001-2-6/_warps.txt npc: npc/001-2-6/books.txt +npc: npc/001-2-6/christopher.txt npc: npc/001-2-6/dolfina.txt diff --git a/npc/001-2-6/christopher.txt b/npc/001-2-6/christopher.txt new file mode 100644 index 00000000..b90c2f79 --- /dev/null +++ b/npc/001-2-6/christopher.txt @@ -0,0 +1,17 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Librarian + +001-2-6,57,46,0 script Christopher NPC_CHRISTOPHER,{ + speech 4, + l("Hi."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} |