//This script controls the respawning of creatures in the 3rd corrider on the zipup state Base { Conditions { if EitherPlayerInTriggerArea "Spawn_3" == 1 and if PartyUnderCover == 0 and if NumBaddiesThatCanSeePlayers < 2 goto GetReadyToSpawn } Actions { ResetTimer } } state GetReadyToSpawn { Conditions { if Timer > 5 goto Spawn } Actions { } } state Spawn { Conditions { } Actions { CreateCreatures "zipup=resporn_zipup_2" "type=tiefighterpilot" "script=SpawnAttack" AlertCreatures "character=player" Idle "mintime=1.5" "maxtime=2.5" CreateCreatures "zipup=resporn_zipup_2" "type=tiefighterpilot" "script=SpawnAttack" AlertCreatures "character=player" SetState "Base" } }