diff options
Diffstat (limited to 'world/map/npc/easter/2010/helper.txt')
-rw-r--r-- | world/map/npc/easter/2010/helper.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/world/map/npc/easter/2010/helper.txt b/world/map/npc/easter/2010/helper.txt new file mode 100644 index 00000000..2dfccae1 --- /dev/null +++ b/world/map/npc/easter/2010/helper.txt @@ -0,0 +1,15 @@ +028-1.gat,130,47,0 script Control#Helper 127,{ +close; + +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; + +} |