QUOTE(DooM77 @ Nov 7 2006, 03:38 PM)
I mean exacly what I wrote. Some explained to me at this forums that triggers are scanned from top to bottom, and before trigger can run, actions of the previous one have to be done. Can you tell me clearly how does trigger list works?
[right][snapback]585174[/snapback][/right]
I mean, what you mean by "Are there other variable incrementing speed in SP than in MP? +_;"
Anyway, for your question:
Lets use C
x = 1;
y = -1;
if (y < 0) { do something } // Trigger 1
if (x > 0) { do something } // Trigger 2
both ifs are executed, from top to bottom, the condition of the "Trigger 1" has nothing to do with the condition of the "Trigger 2"
Thats what happen in triggers.
if (x > 0) { do something }
else if (y < 0) { do another thing } // Triggers don't work like this