• 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] Bug In GroupEnumUnitsInRect ???

Status
Not open for further replies.
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"....

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
 
Status
Not open for further replies.
Top