summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicksha <Micksha@users.noreply.github.com>2018-10-23 16:22:23 +0200
committerMicksha <Micksha@users.noreply.github.com>2018-11-05 21:34:37 +0100
commitd77b61cff0f2b1069324c3f3086db0a93f3c0db5 (patch)
tree8f4fb0b964f9b06a2aed6948a9c299ba1a65e25c
parent920057a9bda54d8c7e0ba5d1da5c2762081971c2 (diff)
downloadserverdata-d77b61cff0f2b1069324c3f3086db0a93f3c0db5.tar.gz
serverdata-d77b61cff0f2b1069324c3f3086db0a93f3c0db5.tar.bz2
serverdata-d77b61cff0f2b1069324c3f3086db0a93f3c0db5.tar.xz
serverdata-d77b61cff0f2b1069324c3f3086db0a93f3c0db5.zip
Add Mundane and Sophialla
-rw-r--r--db/constants.conf2
-rw-r--r--npc/001-1/sophialla.txt20
-rw-r--r--npc/001-3-0/mundane.txt20
3 files changed, 42 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf
index f75c7e98..043ce489 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -4116,6 +4116,8 @@ constants_db: {
NPC_LUMBERJACK: 452
NPC_HINNAK: 453
NPC_RICHARD_LEGACY: 454
+ NPC_SOPHIALLA: 455
+ NPC_MUNDANE: 456
NPC_TEST1: 800
NPC_PLAYER: 801
diff --git a/npc/001-1/sophialla.txt b/npc/001-1/sophialla.txt
new file mode 100644
index 00000000..ad4d508a
--- /dev/null
+++ b/npc/001-1/sophialla.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Sophialla, the connection between Artis and the Brotherhood in Hurns.
+// THIS IS A PLACEHOLDER!
+
+001-1,73,40,0 script Sophialla#001-1 NPC_SOPHIALLA,{
+ speech
+ l("Hello."),
+ l("Can't you see I am reading? If you need something, tell me the secret password.");
+ lg("If you don't know it, just go, please.");
+
+ close;
+
+OnInit:
+ .sex = G_FEMALE;
+ .distance = 2;
+ end;
+}
diff --git a/npc/001-3-0/mundane.txt b/npc/001-3-0/mundane.txt
new file mode 100644
index 00000000..51ffb1bd
--- /dev/null
+++ b/npc/001-3-0/mundane.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Mundane, Monas dad, lost in sewers.
+// THIS IS A PLACEHOLDER!
+
+001-3-0,97,66,0 script Mundane#001-3-0 NPC_MUNDANE,{
+ speech
+ l("Oh, Hi."),
+ l("I didn't expect someone coming here. I need help.");
+ lg("Do you know the way out of here? My daughter Mona may worry already.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}