blob: 2dfccae12ccdb6d3323cf659899a7f288771ee4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}
|