• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[Script] WC3 TD Count

Status
Not open for further replies.
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 45
Joined
Feb 27, 2007
Messages
5,578
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.
 
Status
Not open for further replies.
Top