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
390 B
Plaintext
16 lines
390 B
Plaintext
void main()
|
|
{
|
|
object oSwitch = GetObjectByTag("a1_leverswitch");
|
|
|
|
if(GetLocalInt(oSwitch, "a1leverused") != 1)
|
|
{
|
|
PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
|
|
SetLocalInt(oSwitch, "a1leverused", 1);
|
|
}
|
|
else
|
|
{
|
|
PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
|
|
SetLocalInt(oSwitch, "a1leverused", 0);
|
|
}
|
|
}
|