Staredit Network

Staredit Network -> UMS Assistance -> Wait build-Up
Report, edit, etc...Posted by Falkoner on 2006-09-02 at 21:11:14
I know the basics about wait buildup, that if more than 1 wait fires off at once for the same players set of triggers then problems happen, but what happens to the waits, do they just start screwing up the trigger, do both waits get added together, will the triggers with the waits eventually end anyway?
I'm just wondering, because right now i just have no idea.
So, experts, ill just sit back, eat my pie and listen eat.gif
Report, edit, etc...Posted by JuiceBug on 2006-09-02 at 22:40:26
well, the triggers fire from top to bottom, if you have one trigger with a wait in it, followed by a trigger w/o one, the second trigger will not wait for the first trigger to end. but if, the second trigger has a wait in it, it'll wait untill the first one ends, then the first one will wait for the second one, so if u had two triggers like

wait(0);
blAH
wait(500);


wait(0);
blah2
wait(500);

they would take turns
Report, edit, etc...Posted by LegacyWeapon on 2006-09-02 at 23:18:13
Waits do strange things. Before a "wait", other triggers are checked to see if their conditions are fulfilled, and if so, they are run.

Indepth here:
http://www.clanunknown.net/WaitBlocks
Report, edit, etc...Posted by Gigins on 2006-09-03 at 04:25:39
You mean that triggers with waits doesn't run in order they are listed but they are run last for the players? Weird. wacko.gif
Report, edit, etc...Posted by JaFF on 2006-09-03 at 06:09:23
I find out something new every day smile.gif
Report, edit, etc...Posted by PCFredZ on 2006-09-03 at 14:15:52
QUOTE(DEAD @ Sep 3 2006, 04:25 AM)
You mean that triggers with waits doesn't run in order they are listed but they are run last for the players? Weird. wacko.gif
[right][snapback]555015[/snapback][/right]

That can't be true because the Waits are in the Actions, so the Conditions must be checked first, so the trigger has to be scanned in the regular ordering.
Report, edit, etc...Posted by Gigins on 2006-09-03 at 17:08:18
Yet again, 2 people are telling 2 damn different version. Now how do I know which one is true? pinch.gif
Report, edit, etc...Posted by Kenoli on 2006-09-03 at 17:42:12
QUOTE(DEAD)
You mean that triggers with waits doesn't run in order they are listed but they are run last for the players?
The entire trigger isn't delayed. Conditions check and actions execute untill it hits a wait action.
The actions remaining after the wait execute later.
Next Page (1)