summaryrefslogtreecommitdiff
path: root/npc/001-2-33
diff options
context:
space:
mode:
Diffstat (limited to 'npc/001-2-33')
-rw-r--r--npc/001-2-33/doors.txt56
1 files changed, 0 insertions, 56 deletions
diff --git a/npc/001-2-33/doors.txt b/npc/001-2-33/doors.txt
deleted file mode 100644
index 65266cb1..00000000
--- a/npc/001-2-33/doors.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-// Evol scripts.
-// Authors:
-// 4144, Reid
-// Description:
-// Doors warp and animations in map 001-2-33
-//
-
-001-2-33,29,32,0 script #LeftWarp-001-2-33 NPC_HIDDEN,0,0,{
-OnTouch:
- warp "001-2-34", 29, 32;
- close;
-
-OnUnTouch:
- doevent "#LeftWarp-001-2-33::OnUnTouch";
-}
-
-001-2-33,29,31,0 script #LeftDoor-001-2-33 NPC_ARTIS_IN_DOOR,1,2,{
- close;
-
-OnTouch:
- doorTouch;
-
-OnUnTouch:
- doorUnTouch;
-
-OnTimer340:
- doorTimer;
-
-OnInit:
- doorInit;
-}
-
-001-2-33,39,32,0 script #RightWarp-001-2-33 NPC_HIDDEN,0,0,{
-OnTouch:
- warp "001-2-32", 27, 32;
- close;
-
-OnUnTouch:
- doevent "#RightWarp-001-2-33::OnUnTouch";
-}
-
-001-2-33,39,31,0 script #RightDoor-001-2-33 NPC_ARTIS_IN_DOOR,1,2,{
- close;
-
-OnTouch:
- doorTouch;
-
-OnUnTouch:
- doorUnTouch;
-
-OnTimer340:
- doorTimer;
-
-OnInit:
- doorInit;
-}