doFollow: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= *\[\[([^ ]+)\]\], \[\[([^ ]+)\]\]" to "|seealso= $1 $2")
No edit summary
Line 28: Line 28:
|gr1= Unit Control
|gr1= Unit Control


|descr= Order the given unit(s) to follow another from his own group (without radio messages).
|descr= Order the given unit(s) to follow another from his own group as his [[formLeader|formation leader]] (without radio messages).
It is also used to resume unit formation after e.g [[doStop]] even if it is the leader himself that is to be resumed (see [[#Example 2|Example 2]]).
It is also used to order the unit to return to formation after e.g [[doStop]] even if it is the leader himself that should return to formation (see [[#Example 2|Example 2]]).


|s1= unit [[doFollow]] unitLead
|s1= unit [[doFollow]] unitLead
Line 43: Line 43:
|x2= <code>[[units]] _group [[doFollow]] [[leader]] _group; {{cc|returns all the units to formation}}</code>
|x2= <code>[[units]] _group [[doFollow]] [[leader]] _group; {{cc|returns all the units to formation}}</code>


|seealso= [[commandFollow]] [[formationLeader]] [[formLeader]] [[isFormationLeader]] [[leader]] [[selectLeader]] [[setLeader]]
|seealso= [[doStop]] [[doMove]] [[commandFollow]] [[formationLeader]] [[formLeader]] [[isFormationLeader]] [[leader]] [[selectLeader]] [[setLeader]]
}}
}}



Revision as of 10:06, 17 February 2022

Hover & click on the images for description

Description

Description:
Order the given unit(s) to follow another from his own group as his formation leader (without radio messages). It is also used to order the unit to return to formation after e.g doStop even if it is the leader himself that should return to formation (see Example 2).
Groups:
Unit Control

Syntax

Syntax:
unit doFollow unitLead
Parameters:
unit: Object or Array of Objects
unitLead: Object
Return Value:
Nothing

Examples

Example 1:
_soldier1 doFollow _soldier2;
Example 2:
units _group doFollow leader _group; // returns all the units to formation

Additional Information

See also:
doStop doMove commandFollow formationLeader formLeader isFormationLeader leader selectLeader setLeader

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
Posted on October 11, 2010‎ - 19:00 (UTC)
Mojito69
These commands (doFollow or commandFollow) work only if the two units are in the same group.
Posted on August 29, 2016 - 22:48 (UTC)
BaerMitUmlaut
The name of this command is a bit misleading, it is used to make a unit return to the formation of its group or subformation.