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

[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