# Pick Each Unit In Unit Group Deprecated

Grammar — Pick each unit in group and do (Actions)
FlagsSubFunctions | Action

Runs the contained actions once for each unit in the unit group. Use the “Picked Unit” function to refer to the unit for which the actions are being run.

# Arguments

  • unitgroup — Unit Group

Returns — void

UnitGroupLoopBegin(#PARAM(group));
for ( ; !UnitGroupLoopDone() ; UnitGroupLoopStep() ) {
    #SUBFUNCS(actions)
}
UnitGroupLoopEnd();

Category: Unit Group / Loops

# Examples

— None found —