PWE_PRC8/_module/nss/lg_shaftoff.nss

9 lines
331 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
// Remove LandGate shafts on exiting trigger area
void main()
{
AssignCommand(GetEnteringObject(), PlaySound("as_mg_telepout1"));
DestroyObject(GetNearestObjectByTag("LandGateShaftColor1"));
DestroyObject(GetNearestObjectByTag("LandGateShaftColor2"));
DestroyObject(GetNearestObjectByTag("LandGateShaftColor3"));
}