summaryrefslogtreecommitdiff
path: root/npc/001-1/doors.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/001-1/doors.txt')
-rw-r--r--npc/001-1/doors.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/npc/001-1/doors.txt b/npc/001-1/doors.txt
new file mode 100644
index 00000000..0cdc449a
--- /dev/null
+++ b/npc/001-1/doors.txt
@@ -0,0 +1,32 @@
+// Evol scripts.
+// Authors:
+// 4144, Reid
+// Description:
+// Doors warp and animations in map 001-1
+//
+
+001-1.gat,54,41,0 script #Door1 313,1,1{
+ close;
+
+OnTouchFirst:
+ setnpcdir 2;
+ stopnpctimer;
+ initnpctimer;
+ close;
+
+OnUnTouchAll:
+ setnpcdir 4;
+ initnpctimer;
+ startnpctimer;
+ close;
+
+OnTouchCenter:
+ warp "001-1", 54, 55;
+ close;
+
+OnTimer340:
+ stopnpctimer;
+ if (getnpcdir ("") == 2) setnpcdir 6;
+ if (getnpcdir ("") == 4) setnpcdir 8;
+ end;
+}