• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Trigger] Between about Event Every 1 seconds

Status
Not open for further replies.
Level 20
Joined
Jul 14, 2011
Messages
3,213
Depends on the actions. You can display a random integer every 0.03 with several triggers at the same time without experiencing any major problem.

I copied this trigger 10 times, and the game runs like charm.
  • Untitled Trigger 001 Copy 9
    • Events
      • Time - Every 0.03 seconds of game time
    • Conditions
    • Actions
      • Game - Display to (All players) the text: (String((Random integer number between 1 and 10)))
But if you leak, handle units, groups, etc... then it may represent a problem, though 1 second periodic trigger is almost unnoticeable by the game, which runs by 0.0000. In triggers we can only manipulate 0.00, so, for every 1 action you do every 0.00, the game handles 100... You can imagine the speed.
 
Status
Not open for further replies.
Top