diff options
-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; +} + |