diff options
author | Reid <reidyaro@gmail.com> | 2016-03-25 19:41:44 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-03-25 19:41:44 +0100 |
commit | 6d95c533327a992de7ed1b12221e0a53d849ba98 (patch) | |
tree | b8668ade48df8eb94c144bee0fa42b85e6a6b756 | |
parent | b9088b834419414b1dab70c6db6661cd1d25d98f (diff) | |
download | serverdata-6d95c533327a992de7ed1b12221e0a53d849ba98.tar.gz serverdata-6d95c533327a992de7ed1b12221e0a53d849ba98.tar.bz2 serverdata-6d95c533327a992de7ed1b12221e0a53d849ba98.tar.xz serverdata-6d95c533327a992de7ed1b12221e0a53d849ba98.zip |
Add Leonard blank 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/leonard.txt | 17 |
3 files changed, 19 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf index a03345b2..a8e6a9f0 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3779,6 +3779,7 @@ constants_db: { NPC_JANUS: 141 NPC_CHRISTOPHER: 142 NPC_ROBIN: 143 + NPC_LEONARD: 144 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 9b6ba85e..49b40c2a 100644 --- a/npc/001-2-6/_import.txt +++ b/npc/001-2-6/_import.txt @@ -4,3 +4,4 @@ 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 +npc: npc/001-2-6/leonard.txt diff --git a/npc/001-2-6/leonard.txt b/npc/001-2-6/leonard.txt new file mode 100644 index 00000000..4ae64bf9 --- /dev/null +++ b/npc/001-2-6/leonard.txt @@ -0,0 +1,17 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Librarian + +001-2-6,52,28,0 script Leonard NPC_LEONARD,{ + speech 4, + l("Hi."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} |