• 🏆 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!

[Script] WC3 TD Count

Level 1
Joined
Dec 15, 2023
Messages
1
Hello. I wanna ask how to create td with counting units like the units just running in circles before the count will not exceed 100
 
Level 39
Joined
Feb 27, 2007
Messages
5,019
Increment an integer variable by +1 when a unit is spawned and decrement it by -1 when a unit is killed.

If you have multiple groups of 100 (for different players/zones) you’ll need that many different integers as well as unit groups to hold the living units and keep track of which one is which. Another solution instead of groups would be to use a Unit Indexer and an integer array to ‘attach’ the data about which group each unit belongs to to the unit itself. Or you could use its Custom Value directly, but that would disallow anything else that might want to use CV in your map which could be annoying to fix later on.
 
Top