join: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)\]\]" to "{{GameCategory|arma3|Scripting Commands}}")
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]2(\|.*)\]\]" to "{{GameCategory|arma2|Scripting Commands}}")
Line 61: Line 61:
[[Category:Scripting Commands OFP 1.46|JOIN]]
[[Category:Scripting Commands OFP 1.46|JOIN]]
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma1|Scripting Commands}}
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 04:09, 9 January 2021

Hover & click on the images for description

Description

Description:
Maximum number of
units per group
Operation Flashpoint 12
Armed Assault 144
Arma 2 ?
Arma 3 3000+

Join all units in the array to given group.

To have a group member leave a group, join him with the grpNull group (e.g. [guy1] join grpNull), but beware, as brand new group is created for the leaving unit and this could result in the number of groups in a mission growing out of control.
Groups:
Groups

Syntax

Syntax:
unitArray join group
Parameters:
unitArray: Array - units to join group
group: Group or Object
Return Value:
Nothing

Examples

Example 1:
[_unitOne, _unitTwo] join player;
Example 2:
[_unitOne, _unitTwo] join (group player);

Additional Information

See also:
joinAsjoinAsSilentjoinSilentgroupleader

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

Notes

Bottom Section