# Pick Each Player In Player Group Deprecated

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

Picks each player in the specified Player Group and runs the associated action set. The “Picked Player” function must be used to reference the iterating value inside of the loop.

# Arguments

  • playergroup — Player Group

Returns — void

PlayerGroupLoopBegin(#PARAM(group));
for ( ; !PlayerGroupLoopDone() ; PlayerGroupLoopStep() ) {
    #SUBFUNCS(actions);
}
PlayerGroupLoopEnd();

Category: Player Group / Loops

# Examples

— None found —