• 🏆 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!
  • ✅ The POLL for Hive's Texturing Contest #33 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!

how to create timer that goes forward

Status
Not open for further replies.
Level 27
Joined
Sep 26, 2009
Messages
2,471
Make periodic tirgger that fires "Every X.YZ of game time". Use real or integer variable that you increment each time the trigger fires.

Something like this:
Code:
Events
    Every 1.00 second of game time
Conditions
Actions
    Set time_var = time_var + 1.00

Refer to time_var when you need that time.
 
Status
Not open for further replies.
Top