diff options
-rw-r--r-- | db/const.txt | 1 | ||||
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/qanon.txt | 21 |
3 files changed, 23 insertions, 0 deletions
diff --git a/db/const.txt b/db/const.txt index 76ebd3a1..84fce1cc 100644 --- a/db/const.txt +++ b/db/const.txt @@ -3399,6 +3399,7 @@ NPC_LLOYD 126 NPC_IVAN 127 NPC_ALIGE_OUTSIDE_BARREL 128 NPC_MERLIN 129 +NPC_Q_ANON 130 NPC_ALIGE 401 NPC_ORC_SAILOR 402 NPC_RATTO_SAILOR 403 diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 5d509830..59a7891c 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -18,6 +18,7 @@ npc: npc/001-1/lozerk.txt npc: npc/001-1/merlin.txt npc: npc/001-1/nalkri.txt npc: npc/001-1/panels.txt +npc: npc/001-1/qanon.txt npc: npc/001-1/qonan.txt npc: npc/001-1/taree.txt npc: npc/001-1/treeleaf.txt diff --git a/npc/001-1/qanon.txt b/npc/001-1/qanon.txt new file mode 100644 index 00000000..3d3f5010 --- /dev/null +++ b/npc/001-1/qanon.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Artis's Legion of Aemil leader. + +001-1,51,46,0 script Q'Anon NPC_Q_ANON,{ + mesn; + mesq l("It's been a while boy."); + + goto L_Close; + +L_Close: + close; + +OnInit: + .sex = G_MALE; + .distance = 3; + end; +} + |