Battledale_PRC8/_module/nss/ty_alcove3lever.nss

16 lines
390 B
Plaintext
Raw Permalink Normal View History

void main()
{
object oSwitch = GetObjectByTag("a3_leverswitch");
if(GetLocalInt(oSwitch, "a3leverused") != 1)
{
PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
SetLocalInt(oSwitch, "a3leverused", 1);
}
else
{
PlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
SetLocalInt(oSwitch, "a3leverused", 0);
}
}