Battledale_PRC8/_module/nss/ty_alcove1lever.nss

16 lines
390 B
Plaintext
Raw Permalink Normal View History

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);
}
}