diff options
author | Reid <reidyaro@gmail.com> | 2016-02-28 01:39:11 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-02-28 01:39:42 +0100 |
commit | 20da1052a1bd04a7e9c1c9d446c85cb45a57ed34 (patch) | |
tree | 0c77233c5b9318c0dbf3d46faad469366b34a4f0 | |
parent | 1429022d0bb21160177c7ab0b719b4d2866badba (diff) | |
download | serverdata-20da1052a1bd04a7e9c1c9d446c85cb45a57ed34.tar.gz serverdata-20da1052a1bd04a7e9c1c9d446c85cb45a57ed34.tar.bz2 serverdata-20da1052a1bd04a7e9c1c9d446c85cb45a57ed34.tar.xz serverdata-20da1052a1bd04a7e9c1c9d446c85cb45a57ed34.zip |
Add disabled NPC for Party creation.
-rw-r--r-- | db/constants.conf | 1 | ||||
-rw-r--r-- | npc/001-2-9/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-2-9/janus.txt | 20 |
3 files changed, 22 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf index 4c82f843..e7209b14 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3893,6 +3893,7 @@ constants_db: { NPC_LYDON: 138 NPC_RED: 139 NPC_QPID: 140 + NPC_JANUS: 141 NPC_ALIGE: 401 NPC_ORC_SAILOR: 402 NPC_RATTO_SAILOR: 403 diff --git a/npc/001-2-9/_import.txt b/npc/001-2-9/_import.txt index 3503809b..7e72fe1e 100644 --- a/npc/001-2-9/_import.txt +++ b/npc/001-2-9/_import.txt @@ -1,2 +1,3 @@ +// npc: npc/001-2-9/janus.txt npc: npc/001-2-9/mapflags.txt npc: npc/001-2-9/_warps.txt diff --git a/npc/001-2-9/janus.txt b/npc/001-2-9/janus.txt new file mode 100644 index 00000000..add99ebc --- /dev/null +++ b/npc/001-2-9/janus.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Party NPC + +001-2-9,30,28,0 script Janus NPC_JANUS,{ + speech 4, + l("Croc!"); + + closedialog; + goodbye; + close; + +OnInit: + .sex = G_MALE; + .distance = 3; + end; +} + |