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

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.
 
Level 5
Joined
Aug 2, 2008
Messages
123
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.
Top