summaryrefslogtreecommitdiff
path: root/npc/081-2/logic.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/081-2/logic.txt')
-rw-r--r--npc/081-2/logic.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/081-2/logic.txt b/npc/081-2/logic.txt
new file mode 100644
index 00000000..5bb7ff53
--- /dev/null
+++ b/npc/081-2/logic.txt
@@ -0,0 +1,29 @@
+// TMW Script.
+// Author:
+// Jesusalva
+// Notes:
+// Christmas 2021 - Northen Lights Dungeon
+
+081-2,90,20,0 script #0812Nexit NPC_HIDDEN,0,0,{
+ end;
+OnTouch:
+ .@id = X21ID();
+
+ /* We need to determine if instance exists and is needed */
+ .@t = X21TYPE();
+ .@mapn$="0813@"+X21ID2();
+ .@inst = instance_create("Northen Lights", .@id, .@t);
+ // Instance must be created
+ if (.@inst >= 0) {
+ // We... Could use base name, actually, but whatever
+ instance_attachmap("081-3", .@inst, false, .@mapn$);
+ instance_set_timeout(1800, 1800, .@inst);
+ instance_init(.@inst);
+ }
+
+ warp .@mapn$, 44, 49;
+ doevent instance_npcname("Pentagram#Xmas21A", .@inst)+"::OnClean";
+ end;
+}
+
+