HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

TriggerEvaluate(trig)

10-06-2006, 01:47 AM#1
The_AwaKening
I noticed in bizzard.j ConditionalTriggerExecute(trig) calls function TriggerEvaluate(trig) which returns boolean. Anyone know exactly what it is checking?
10-06-2006, 02:44 AM#2
PipeDream
TriggerEvaluate evaluates the trigger conditions.
10-06-2006, 05:45 PM#3
martix
Which means? You can use some other trigs conditions for what you want?
I've never really understood the whole trigger manipulation thingies.
10-06-2006, 07:27 PM#4
PipeDream
it runs the trigger's condition and returns the condition return value or false if the condition is "returns nothing". I don't know what it does if you have multiple conditions, probably logical and with early escape, but no idea what that order is.
Trigger execute runs the trigger actions with out checking if conditions are true, so you can use TriggerEvaluate to make a trigger behave the way they do when triggered by events.