• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[JASS] What does this native "GetTriggerEvalCount" do?

Status
Not open for further replies.
Thats not 100% correct I think. GetTriggerEvalCount counts how often the event occurs.

If you want to count the executions of a trigger probably GetTriggerExecCount should be fine.

So if you have certain conditions that prevent your trigger to be fired, the execution count should not increase, but the evaluation count does.
 
Level 11
Joined
Dec 19, 2012
Messages
411
Thats not 100% correct I think. GetTriggerEvalCount counts how often the event occurs.

If you want to count the executions of a trigger probably GetTriggerExecCount should be fine.

So if you have certain conditions that prevent your trigger to be fired, the execution count should not increase, but the evaluation count does.

After I testing both functions, you're right. Thank for correct me. :)
 
Status
Not open for further replies.
Top