vJass converting unit group to unit array

Status
Not open for further replies.
Level 5
Joined
Aug 2, 2008
Messages
123
Is it possible to convert a unit group to a unit array? I ask because I am working inside of a structure and cant find any way of dissecting the group.

Code:
method see takes nothing returns nothing
     local group spotted
     set spotted = GetUnitsInRangeOfLocAll( .sightRange, .position )
     call ForGroup( spotted, function convert )
endmethod

It appears in structure methods cant be called by ForGroup?
I do apologize if resources already point to a solution, I tried my best with google.
 
Ah awesome, thanks for the information.
If it's not too much to ask, could you point me in the direction of some grade A example vJass?
I'm reasonably experienced with C++ and Java, just need to see some standards :)

Thanks again lads
 
Status
Not open for further replies.
Back
Top