• 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.

[JASS] Removing a unit variable, without removing the unit?

Status
Not open for further replies.
Level 3
Joined
Mar 27, 2004
Messages
70
If you mean a variable set using the handle variables, you just set that variable to null (or 0) and it is cleaned up.

If you mean a global or local variable, it makes no sense trying to remove them.
 
Level 7
Joined
May 6, 2005
Messages
390
You can't really remove variables, but by setting them to null they won't use the memory. This is only important with locals though, just do it at the end of the function.
 
Status
Not open for further replies.
Top