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!
This if ForGroupBJ function. I saw the thread where Darky28 itself recommended this construction :
JASS:
local group g = CreateGroup()
local unit u
...
set u = FirstOfGroup(g)
loop
exitwhen u = null
set u = FirstOfGroup(g)
call RemoveUnit(u) // for example
endloop
...
call DestroyGroup(g)
set g = null
set u = null
u=FirstOfGroup(g) can be inside the loop, before the exitwhen. also this wont leak (for what i know), setting u to null at the end is unneeded (it allready is) and it would make sense to have g as an auxiliar group, not using the main group.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.