diff options
author | Micksha <Micksha@users.noreply.github.com> | 2020-01-13 13:34:40 +0100 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-01 08:22:25 +0000 |
commit | b8404bb4c69e2574686b826fefe6bf9a8edff288 (patch) | |
tree | aa749e377a6feb8079b55ff175788e0648b9b414 | |
parent | bad5c016541748a58b7aee36633eb79bd2bc905b (diff) | |
download | serverdata-b8404bb4c69e2574686b826fefe6bf9a8edff288.tar.gz serverdata-b8404bb4c69e2574686b826fefe6bf9a8edff288.tar.bz2 serverdata-b8404bb4c69e2574686b826fefe6bf9a8edff288.tar.xz serverdata-b8404bb4c69e2574686b826fefe6bf9a8edff288.zip |
add two NPCs for the arrival in Arages as per WildX' proposal.
-rw-r--r-- | db/constants.conf | 2 | ||||
-rw-r--r-- | npc/008-1-1/morcant.txt | 20 | ||||
-rw-r--r-- | npc/008-2-32/thamas.txt | 20 |
3 files changed, 42 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf index 1dcca8cb..51b1c215 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -4040,6 +4040,8 @@ constants_db: { NPC_MIKHAIL: 185 NPC_TROUPE_LEADER: 186 NPC_SIMON: 187 + NPC_MORCANT: 188 + NPC_THAMAS: 189 NPC_CONFUSED_TREE: 400 NPC_ALIGE: 401 diff --git a/npc/008-1-1/morcant.txt b/npc/008-1-1/morcant.txt new file mode 100644 index 00000000..0167353f --- /dev/null +++ b/npc/008-1-1/morcant.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Galmatia the beekeeper. +// THIS IS A PLACEHOLDER! + +008-1-1,58,57,0 script Morcant NPC_MORCANT,{ + speech + l("Hello."), + l("My name is Morcant. I am a Captain, a bit bored since this harbor is not frequented much."), + l("I would like to offer you food and tell you stories, but.. have you ever heard of WildX? I won't need to say more, do I?"); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-32/thamas.txt b/npc/008-2-32/thamas.txt new file mode 100644 index 00000000..e1b23035 --- /dev/null +++ b/npc/008-2-32/thamas.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Thamas the soldier. +// THIS IS A PLACEHOLDER! + +008-2-32,36,26,0 script Thamas NPC_THAMAS,{ + speech + l("Hi there."), + l("I am a legion soldier who never talks much, until Jesusalva or WildX puts words in my mouth."), + lg("Until then, let me be quiet. Talk to you later."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} |