so anyway i was making a nice intro for my map when the wait triggers stopped working. I tested it before and it worked fine so anyone have an idea whats going on?
Wait blocks, most likely. Make sure there aren't two triggers running with waits at the same time, that hyper triggers are owned by a different player, etc. Most likely you just added another trigger that uses waits and it interfered with the original ones.
More info on wait blocks, is a wait block happens when 2 waits are happening at the same time for the same player (note that the forces count as all the players in that force) waits will take turns waiting on eachother, so lets say one wait is 50 milli and other is 100 milli, then one will go off, then the other will go off while the other waits to go off again if it is preserved.
Hypertriggers will cause massive wait blocks, but although they speed up all the triggers in the map, no matter what force they are in, they will not make wait blocks for other players that they aren't in.
ok thx. now that i know what might be the problem ill try fix it...
Instead of using wait triggers you could spend more time (but more efficiently) doing death counters. Either that, or you could just be extremely careful about how long and where you put your wait triggers.
Death counters work like this:
Every 2 seconds the game goes through your triggers and checks all the conditions if you don't have hypertriggers.
So you just tell it to constantly remove on or add one death counter and so 2 death counters would be 4 seconds, 3 would be 6 etc...
With hypertriggers the conditions will be checked 12 times each second, so you would have 24 deathcounts be 2 seconds and so on.
I already sorted out the problems for the wait triggers. Id like to stay away from death counters because its just too much time wasted and because i dont have room in my map