summaryrefslogtreecommitdiff
path: root/npc/008-2-6
diff options
context:
space:
mode:
authorMicksha <Micksha@users.noreply.github.com>2018-10-23 13:34:06 +0200
committerMicksha <Micksha@users.noreply.github.com>2018-11-05 21:34:37 +0100
commit920057a9bda54d8c7e0ba5d1da5c2762081971c2 (patch)
tree53e7cf7e015d7b59c56502b62bd9d30b2b781856 /npc/008-2-6
parent7330d282726f62cdb63dcca5b49c4607cbbdc199 (diff)
downloadserverdata-920057a9bda54d8c7e0ba5d1da5c2762081971c2.tar.gz
serverdata-920057a9bda54d8c7e0ba5d1da5c2762081971c2.tar.bz2
serverdata-920057a9bda54d8c7e0ba5d1da5c2762081971c2.tar.xz
serverdata-920057a9bda54d8c7e0ba5d1da5c2762081971c2.zip
Add all the Hurns NPCs
Diffstat (limited to 'npc/008-2-6')
-rw-r--r--npc/008-2-6/_import.txt2
-rw-r--r--npc/008-2-6/alan.txt20
-rw-r--r--npc/008-2-6/apprentice.txt20
3 files changed, 42 insertions, 0 deletions
diff --git a/npc/008-2-6/_import.txt b/npc/008-2-6/_import.txt
index 4630df43..ceb45513 100644
--- a/npc/008-2-6/_import.txt
+++ b/npc/008-2-6/_import.txt
@@ -1,4 +1,6 @@
// Map 008-2-6: Two Guys One Bed
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/008-2-6/_warps.txt",
+"npc/008-2-6/alan.txt",
+"npc/008-2-6/apprentice.txt",
"npc/008-2-6/mapflags.txt",
diff --git a/npc/008-2-6/alan.txt b/npc/008-2-6/alan.txt
new file mode 100644
index 00000000..c5f6aae5
--- /dev/null
+++ b/npc/008-2-6/alan.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Alan the bow-seller.
+// THIS IS A PLACEHOLDER!
+
+008-2-6,31,25,0 script Alan#008-2-4 NPC_KFAHR,{
+ speech
+ l("Hi Sir."),
+ l("Bad timing when you are asking for bows. Our bowmaker Gumi hasn't been seen for days now."),
+ lg("Come back later, perhaps we are lucky and he teaches you how to chop trees for wood.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}
diff --git a/npc/008-2-6/apprentice.txt b/npc/008-2-6/apprentice.txt
new file mode 100644
index 00000000..04d05562
--- /dev/null
+++ b/npc/008-2-6/apprentice.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Alan's Apprentice.
+// THIS IS A PLACEHOLDER!
+
+008-2-6,29,27,0 script Apprentice#008-2-6 NPC_YOUNG_MAN_APPRENTICE,{
+ speech
+ l("Hi Sir."),
+ l("Sorry, we are sold out for today."),
+ lg("Come back later.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}