Battledale_PRC8/_module/nss/ty_alc1chestused.nss
Jaysyn904 7b9e44ebbb Initial upload
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.
2024-03-11 23:44:08 -04:00

20 lines
601 B
Plaintext

void main()
{
location lLeverSpot = GetLocation(GetWaypointByTag("ty_wp_leverspot1"));
if(GetLocalInt(OBJECT_SELF, "alc1chstused") == 0)
{
PlayAnimation(ANIMATION_PLACEABLE_OPEN);
CreateObject(OBJECT_TYPE_PLACEABLE, "flrlever002", lLeverSpot, TRUE);
SetLocalInt(OBJECT_SELF, "alc1chstused", 1);
}
else
{
object oLever = GetObjectByTag("ty_alcove1lever");
PlayAnimation(ANIMATION_PLACEABLE_CLOSE);
DestroyObject(oLever);
SetLocalInt(OBJECT_SELF, "alc1chstused", 0);
}
}