I think his question is how you make something go really fast. The fastest way is not to use the action wait, but the event "each x seconds do action".
In order to do this you need 2 triggers.
one Trigger to "Turn on Trigger 1"/"Turn off Trigger 1" and trigger one trigger with the event "each 0.01 seconds do action".
Lets name the trigger which has the "0.01" event and perhaps the effects or whatever you want to do each 0.01 seconds Trigger1
Lets name the trigger which turns Trigger1 on/off Trigger2
Now simply make the 3 actions in Trigger2
saying "Turn on Trigger1"
"Wait x Seconds"
"Turn off Trigger1"
By this you can control how many times Trigger1 will run since 0.01 x 100 = 1 Second so if we take that for an example, that you want Trigger1 to be runned 100 times, it would look like this:
"Turn on Trigger1"
"Wait 1 Second"
"Turn off Trigger1"
Hope that I helped you.
// Sverkerman creator of Bosses of Warcraft
[Advertisement]
Hmh, I actually think his question was about every 0.01 second of game time versus every 0.03 seconds of game time.
Either way, this is incorrect:
By this you can control how many times Trigger1 will run since 0.01 x 100 = 1 Second so if we take that for an example, that you want Trigger1 to be runned 100 times, it would look like this:
"Turn on Trigger1"
"Wait 1 Second"
"Turn off Trigger1"
If you use every 0.01 seconds (as in your example, and as stated by many posts above is quite bad), the trigger will run 110-150 times, NOT 100 times.
Waits are very inaccurate and they always wait longer than you tell them to.
If you tell the game to wait 0.80 seconds, you'd be a lot closer to 100 cycles than with wait 1.00 second.
According to some testing I've done, the wait greatly varies if there are a lot of triggers runnig, but even if there is only 1 trigger running (1 every X seconds), it can still be 0.3 seconds off (with a minimum of 0.06 seconds wrong, so 1.00 seconds is 1.06-1.30 seconds
if it is the only trigger running).
Basically: don't use waits (unless you really need them), don't use every 0.01 second (never).