summaryrefslogtreecommitdiff
path: root/npc/easter/2010/helper.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/easter/2010/helper.txt')
-rw-r--r--npc/easter/2010/helper.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/easter/2010/helper.txt b/npc/easter/2010/helper.txt
new file mode 100644
index 00000000..2e37bbd2
--- /dev/null
+++ b/npc/easter/2010/helper.txt
@@ -0,0 +1,15 @@
+028-1.gat,130,47,0 script Control#Helper 127,{
+end;
+
+OnBarrierEnable:
+ set $Easter_2010_Npc_State2, ($Easter_2010_Npc_State2 & ~(E10_BARRIER_MASK << E10_BARRIER_SHIFT)) | (E10_BARRIER_ACTIVE << E10_BARRIER_SHIFT);
+ end;
+
+OnBarrierDisable:
+ set $Easter_2010_Npc_State2, ($Easter_2010_Npc_State2 & ~(E10_BARRIER_MASK << E10_BARRIER_SHIFT)) | (E10_BARRIER_OPEN << E10_BARRIER_SHIFT);
+ end;
+
+OnInit:
+ goto OnBarrierEnable;
+
+}