doMove: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (note format)
Line 23: Line 23:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>_soldier1 doMove (position officer)</pre> |= Example 1
|x1= <code>_soldier1 [[doMove]] ([[position]] _officer);</code> |= Example 1
|x2= <pre>this doMove (getMarkerPos "Marker1")</pre> |= Example 2
|x2= <code>this [[doMove]] ([[getMarkerPos]] "Marker1");</code> |= Example 2
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 46: Line 46:
<dd class="note">
<dd class="note">
If a unit is part of a group, and is not the leader, the unit will fall back into formation soon after the domove is completed. This does not happen for units that are in a group alone (because they are their own leader).
If a unit is part of a group, and is not the leader, the unit will fall back into formation soon after the domove is completed. This does not happen for units that are in a group alone (because they are their own leader).
There is no single command to get a unit to move to a position and stay there. The best way to do this is to issue a domove, then wait for the unit to reach his destination, then disable his movement AI. VBS2 users can use the [[fn_vbs_doMoveEx_(VBS2)|fn_vbs_doMoveEx]] function.
There is no single command to get a unit to move to a position and stay there. The best way to do this is to issue a domove, then wait for the unit to reach his destination, then disable his movement AI. VBS2 users can use the [[fn_vbs_doMoveEx_(VBS2)|fn_vbs_doMoveEx]] function.
<!-- Note Section END -->
<!-- Note Section END -->



Revision as of 16:52, 30 August 2014

Hover & click on the images for description

Description

Description:
Order the given unit(s) to move to the given position (without radio messages). After reaching his destination, the unit will immediately return to formation (if in a group); or order his group to form around his new position (if a group leader).
Groups:
Uncategorised

Syntax

Syntax:
unit(s) doMove position
Parameters:
unit(s): Object or Array
position: Array - format Position
Return Value:
Nothing

Examples

Example 1:
_soldier1 doMove (position _officer);
Example 2:
this doMove (getMarkerPos "Marker1");

Additional Information

See also:
commandMovesetDestinationmoveTomoveaddWaypointfn_vbs_doMoveExsetExactMovement (VBS2)getExactMovement (VBS2)

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

Posted on February 9, 2008
Kronzky
If doMove is to be used in conjunction with waypoint behavior commands (e.g. setSpeedMode), then those have to be issued after the move command to have an effect. Otherwise the move will be done with the default settings.
Posted on February 3, 2009
General Barron
If a unit is part of a group, and is not the leader, the unit will fall back into formation soon after the domove is completed. This does not happen for units that are in a group alone (because they are their own leader). There is no single command to get a unit to move to a position and stay there. The best way to do this is to issue a domove, then wait for the unit to reach his destination, then disable his movement AI. VBS2 users can use the fn_vbs_doMoveEx function.

Bottom Section