QUOTE(blue_sphere @ Oct 31 2005, 11:41 PM)
Would someone mind taking a look at the map please?
I am sure its just a few small things that i am missing that someone more experienced would instantly pick up on.
[right][snapback]345784[/snapback][/right]
I took a look at it and it's wait blocks for sure. Here is a quote from legacy..
QUOTE(LegacyWeapon)
Triggers process one at a time too. Waits (and center locations in Single Player) are a special occasion where triggers run some of their actions, halts and runs any other triggers, and then finishes their actions.
Wait blocks are a perfect example of triggers running one at a time. During a wait block, none of other triggers run because trigger checking is halted due to the wait block. A wait block is also a super long wait.
So if you did a spawning marine trigger + preserve and then a wait 10,000 trigger. It would spawn 2 marines, wait 10 seconds, and then continue spawning marines as usual (assuming you aren't using hypers).
Spawns the first Marine upon checking triggers normally.
Spawns the second Marine upon checking triggers before waiting.
Halts trigger checking for 10 seconds (from the wait).
Spawns next Marine from checking triggers normally.