Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
16 lines
379 B
Plaintext
16 lines
379 B
Plaintext
void main()
|
|
{
|
|
object oLocks = GetObjectByTag("ty_bannerlocks");
|
|
|
|
if(GetLocalInt(oLocks, "banner1c") != 1)
|
|
{
|
|
PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
|
|
SetLocalInt(oLocks, "banner1c", 1);
|
|
}
|
|
else
|
|
{
|
|
PlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE);
|
|
SetLocalInt(oLocks, "banner1c", 0);
|
|
}
|
|
}
|