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

Question about special effects leak

Status
Not open for further replies.
Level 2
Joined
Jan 17, 2009
Messages
10
i was wondering that when you do something like

Pick every unit in Group and do [actions]
Set Point = Position of picked unit
Create a special effect at Point using *whatever*
Destroy last created special effect
Custom script: call RemoveLocation(udg_Point)

Will these leak?
I was thinking about the "destroy last created special effect" as to destroying only 1 of the effects out of all the created effects for each point.

Do i have to set the effect into a variable or like use integer A with arrays for variables to destroy all the effects?
 
Level 2
Joined
Jan 17, 2009
Messages
10
whats better and more leakless?

1) create a special effect
destroy last created special effect
2) create a special effect
set effect = last created special effect
destroy effect
 
Status
Not open for further replies.
Top