summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-06-08 01:42:40 +0200
committerReid <reidyaro@gmail.com>2016-06-08 01:42:40 +0200
commit9b416b49350ef1a86531f7a13063832d9bfaa90a (patch)
treeb6bf796b2181ef7b4198562a1e206137d54690bc
parent3b64b5d5d22503ba5245cb1aafb39d7ecbee0804 (diff)
downloadserverdata-9b416b49350ef1a86531f7a13063832d9bfaa90a.tar.gz
serverdata-9b416b49350ef1a86531f7a13063832d9bfaa90a.tar.bz2
serverdata-9b416b49350ef1a86531f7a13063832d9bfaa90a.tar.xz
serverdata-9b416b49350ef1a86531f7a13063832d9bfaa90a.zip
Add manhole script.
-rw-r--r--npc/001-1/_import.txt1
-rw-r--r--npc/001-1/manhole.txt40
2 files changed, 41 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt
index a80e7499..5bbaf1c6 100644
--- a/npc/001-1/_import.txt
+++ b/npc/001-1/_import.txt
@@ -19,6 +19,7 @@ npc: npc/001-1/juscare.txt
npc: npc/001-1/katja.txt
npc: npc/001-1/lucas.txt
npc: npc/001-1/merlin.txt
+npc: npc/001-1/manhole.txt
npc: npc/001-1/mouboo.txt
npc: npc/001-1/nalkri.txt
npc: npc/001-1/panels.txt
diff --git a/npc/001-1/manhole.txt b/npc/001-1/manhole.txt
new file mode 100644
index 00000000..cc977e8c
--- /dev/null
+++ b/npc/001-1/manhole.txt
@@ -0,0 +1,40 @@
+// Evol scripts.
+// Authors:
+// Reid
+// Description:
+// A manhole near Mona's house.
+// Variable:
+// ArtisQuests_MonaDad
+// Quest states:
+// 0 - Quest not started
+// 1 - Mona explained that her dad was missing
+
+001-1,152,52,0 script #manhole1-001-1 NPC_NO_SPRITE,{
+
+ if (getq(ArtisQuests_MonaDad) == 1)
+ {
+ narrator l("You hear some creeping and crawling sounds from downstairs.");
+ }
+
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 1;
+ end;
+}
+
+001-1,196,35,0 script #manhole2-001-1 NPC_NO_SPRITE,{
+
+ if (getq(ArtisQuests_MonaDad) == 1)
+ {
+ narrator l("You hear some creeping and crawling sounds from downstairs.");
+ }
+
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 1;
+ end;
+}