summaryrefslogtreecommitdiff
path: root/npc/008-2-1
diff options
context:
space:
mode:
authorMicksha <Micksha@users.noreply.github.com>2018-10-05 22:15:07 +0200
committerMicksha <Micksha@users.noreply.github.com>2018-11-05 21:34:37 +0100
commit862551f1341356d88a4b969a90f1c98de82067dc (patch)
treedbe90fc525986bc1ebc909af212e96009886f9bf /npc/008-2-1
parente60f059545cdfaefcb6821fdbb8809ccfa9f265a (diff)
downloadserverdata-862551f1341356d88a4b969a90f1c98de82067dc.tar.gz
serverdata-862551f1341356d88a4b969a90f1c98de82067dc.tar.bz2
serverdata-862551f1341356d88a4b969a90f1c98de82067dc.tar.xz
serverdata-862551f1341356d88a4b969a90f1c98de82067dc.zip
Trying to add some NPCs for Hurns
Diffstat (limited to 'npc/008-2-1')
-rw-r--r--npc/008-2-1/_import.txt4
-rw-r--r--npc/008-2-1/generalstore.txt20
-rw-r--r--npc/008-2-1/inspector.txt20
-rw-r--r--npc/008-2-1/richard.txt20
-rw-r--r--npc/008-2-1/selim.txt19
5 files changed, 83 insertions, 0 deletions
diff --git a/npc/008-2-1/_import.txt b/npc/008-2-1/_import.txt
index 1e5137a7..06ba6d3b 100644
--- a/npc/008-2-1/_import.txt
+++ b/npc/008-2-1/_import.txt
@@ -2,4 +2,8 @@
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/008-2-1/_savepoints.txt",
"npc/008-2-1/_warps.txt",
+"npc/008-2-1/generalstore.txt",
+"npc/008-2-1/inspector.txt",
"npc/008-2-1/mapflags.txt",
+"npc/008-2-1/richard.txt",
+"npc/008-2-1/selim.txt",
diff --git a/npc/008-2-1/generalstore.txt b/npc/008-2-1/generalstore.txt
new file mode 100644
index 00000000..ac409800
--- /dev/null
+++ b/npc/008-2-1/generalstore.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// General Store.
+// THIS IS A PLACEHOLDER!
+
+008-1,38,35,0 script Generalstore#008-1 NPC_GENERAL_STORE,{
+ speech
+ l("Hi!"),
+ lg("My name is General Store, they still call me this although I left the army a few years ago.");
+ l("I have nothing to sell, come back later.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}
diff --git a/npc/008-2-1/inspector.txt b/npc/008-2-1/inspector.txt
new file mode 100644
index 00000000..62157207
--- /dev/null
+++ b/npc/008-2-1/inspector.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// The Inspector not willing to do his job.
+// THIS IS A PLACEHOLDER!
+
+008-1,30,34,0 script Inspector#008-1 NPC_INSPECTOR,{
+ speech
+ l("Oh hey!"),
+ lg("Got a beer for me? No? Then I am too busy for your stupid problems.");
+ l("Go away, and bring a beer next time you pass by.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}
diff --git a/npc/008-2-1/richard.txt b/npc/008-2-1/richard.txt
new file mode 100644
index 00000000..f71f52d0
--- /dev/null
+++ b/npc/008-2-1/richard.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Richard the Hurns storage guy.
+// THIS IS A PLACEHOLDER!
+
+008-1,26,35,0 script Richard#008-1 NPC_RICHARD_LEGACY,{
+ speech
+ l("Oh hey!"),
+ lg("I was supposed to act as storagekeeper, but I forgot my key.");
+ l("Come back later, perhaps I can find it.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}
diff --git a/npc/008-2-1/selim.txt b/npc/008-2-1/selim.txt
new file mode 100644
index 00000000..c578f6cd
--- /dev/null
+++ b/npc/008-2-1/selim.txt
@@ -0,0 +1,19 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Selim the Dyer.
+// THIS IS A PLACEHOLDER!
+
+008-1,38,40,0 script Selim#008-1 NPC_GUMI_THE_DYER,{
+ speech
+ l("Oh hey!"),
+ lg("Good you are here, you could be handy for me right now.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}