diff options
author | Freeyorp <Freeyorp101@hotmail.com> | 2010-04-08 15:56:50 +1200 |
---|---|---|
committer | Freeyorp <Freeyorp101@hotmail.com> | 2010-05-24 23:33:29 +1200 |
commit | 371db803633dcc4185e147f5ddff08c7bd5aa613 (patch) | |
tree | 7a77f958c42be5bef16c35a077e3fd536e5273bb /npc/easter/2010/helper.txt | |
parent | f0a5ca4865f1600934b509812799ccd17147d413 (diff) | |
download | serverdata-371db803633dcc4185e147f5ddff08c7bd5aa613.tar.gz serverdata-371db803633dcc4185e147f5ddff08c7bd5aa613.tar.bz2 serverdata-371db803633dcc4185e147f5ddff08c7bd5aa613.tar.xz serverdata-371db803633dcc4185e147f5ddff08c7bd5aa613.zip |
Easter 2010v2010.04.08
Diffstat (limited to 'npc/easter/2010/helper.txt')
-rw-r--r-- | npc/easter/2010/helper.txt | 15 |
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; + +} |