- Joined
- May 4, 2007
- Messages
- 2,260
Hi guys, can some one tell me why I have a compile error in line #4 please ??
I don't understand, it seems that "group" is messed, up, it says "can't convet nothing to group"....
I don't understand, it seems that "group" is messed, up, it says "can't convet nothing to group"....
JASS:
function pauseUnits takes nothing returns nothing
local unit f
local group g = CreateGroup()
set g = GroupEnumUnitsInRect(g, bj_mapInitialPlayableArea, null)
loop
set f = FirstOfGroup(g)
exitwhen(f == null)
call GroupRemoveUnit(g, f)
call PauseUnit(f, true)
endloop
endfunction