groupSelectUnit: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "") |
||
Line 36: | Line 36: | ||
}} | }} | ||
{{GameCategory|arma2|Scripting Commands}} | {{GameCategory|arma2|Scripting Commands}} |
Revision as of 10:39, 18 January 2021
Description
- Description:
- Selects a unit from player's group. If player is the leader, the effect of this command is similar to player pressing F1, F2, F3... buttons to highlight units in his squad, after which the unit command menu is shown. If leader is AI, player will get usual communication menu to interact with the leader.
- Groups:
- Interaction
Syntax
- Syntax:
- player groupSelectUnit [unit, select]
- Parameters:
- player: Object
- [unit, select]: Array
- unit: Object
- select: Boolean
- Return Value:
- Nothing
Examples
- Example 1:
- After leaving menu, deselect all units (command menu is not opened -> no selection)
{ player groupSelectUnit [_x, false]; } forEach (groupSelectedUnits player);
- Example 2:
- Select all units when player is the leader:
{ player groupSelectUnit [_x, true]; } forEach units player;
- Example 3:
- Open communication with group leader:
player groupSelectUnit [leader player, true];
Additional Information
- See also:
- groupSelectedUnits
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note