summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2015-10-26 17:15:11 +0100
committerReid <reidyaro@gmail.com>2015-10-26 17:15:11 +0100
commitc1a564db9d9463f8c9bf4dda7410fdc045241272 (patch)
treee43a96e682248394fb534a2f5b5362ca590825de
parent45dc4324195f81481b89be9f1a9ad0ae5413908f (diff)
downloadserverdata-c1a564db9d9463f8c9bf4dda7410fdc045241272.tar.gz
serverdata-c1a564db9d9463f8c9bf4dda7410fdc045241272.tar.bz2
serverdata-c1a564db9d9463f8c9bf4dda7410fdc045241272.tar.xz
serverdata-c1a564db9d9463f8c9bf4dda7410fdc045241272.zip
Add warp from Artis to #12.
-rw-r--r--npc/001-1/_import.txt1
-rw-r--r--npc/001-1/halloweendoors.txt33
2 files changed, 34 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt
index 3196dd97..fa739014 100644
--- a/npc/001-1/_import.txt
+++ b/npc/001-1/_import.txt
@@ -8,6 +8,7 @@ npc: npc/001-1/carmie.txt
//npc: npc/001-1/chelios.txt
npc: npc/001-1/cookiemaster.txt
//npc: npc/001-1/doors.txt
+npc: npc/001-1/halloweendoors.txt
npc: npc/001-1/elmo.txt
npc: npc/001-1/enora.txt
npc: npc/001-1/eugene.txt
diff --git a/npc/001-1/halloweendoors.txt b/npc/001-1/halloweendoors.txt
new file mode 100644
index 00000000..efb57c50
--- /dev/null
+++ b/npc/001-1/halloweendoors.txt
@@ -0,0 +1,33 @@
+// Evol scripts.
+// Authors:
+// 4144, Reid
+// Description:
+// Doors warp and animations in map 001-1
+//
+
+001-1,92,129,0 script #WarpHalloween NPC_HIDDEN,0,0,{
+OnTouch:
+ warp "001-2-12", 34, 35;
+ close;
+
+OnUnTouch:
+ doevent "#DoorHalloween::OnUnTouch";
+}
+
+001-1,92,129,0 script #DoorHalloween NPC_ARTIS_DOOR,2,3,{
+ close;
+
+OnTouch:
+ doorTouch;
+
+OnUnTouch:
+ doorUnTouch;
+
+OnTimer340:
+ doorTimer;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}