doMove: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *(arg|eff|mp|serverExec|gr[0-9]) *= *(.*) * *\|([^=0-9]{12})" to "|$1=$2 |descr=$3")
No edit summary
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|1.00
|version1= 1.00


|game2= ofpe
|game2= ofpe
Line 28: Line 28:
|gr1= Unit Control
|gr1= Unit Control


|descr= 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). Use [[doStop]] to stop units returning to formation.
|descr= Order the given unit(s) to move to the given position (without radio messages). Upon reaching its destination, if it is the group leader it will order the group to form around it's new position. If it is not the leader, it will immediately be ordered to return to formation by the group leader and begin moving back to the group. Use [[doStop]] to stop units returning to formation. [[moveToCompleted]] will return true when a unit issued this command reaches its destination.


|s1= unit(s) '''doMove''' position
|s1= unit(s) [[doMove]] position


|p1= unit(s): [[Object]] or [[Array]]
|p1= unit(s): [[Object]] or [[Array]]
Line 36: Line 36:
|p2= position: [[Array]] - format [[Position]]
|p2= position: [[Array]] - format [[Position]]


|r1=[[Nothing]]
|r1= [[Nothing]]


|x1= <code>_soldier1 [[doMove]] ([[position]] _officer);</code>
|x1= <sqf>_soldier1 doMove (position _officer);</sqf>
|x2= <code>this [[doMove]] ([[getMarkerPos]] "Marker1");</code>
|x2= <sqf>this doMove (getMarkerPos "Marker1");</sqf>


|seealso= [[commandMove]], [[setDestination]], [[moveTo]], [[move]], [[addWaypoint]]
|seealso= [[commandMove]] [[setDestination]] [[moveTo]] [[move]] [[addWaypoint]]
}}
}}


Line 61: Line 61:
</dl>
</dl>


{{GameCategory|arma1|Scripting Commands}}
{{Note
{{GameCategory|arma2|Scripting Commands}}
|user= DreadedEntity
{{GameCategory|arma3|Scripting Commands}}
|timestamp= 20220402152226
{{GameCategory|tkoh|Scripting Commands}}
|text= The above note is only true of units which group leader is not the player. Player-squad will remain in position until given another order (A3 v2.08.149102)
}}
 
{{Note
|user= DreadedEntity
|timestamp= 20220402203558
|text= If you need your script to halt until the unit has reached it's destination, [[waitUntil]] and [[moveToCompleted]] will come in handy:
<sqf>_unit doMove _pos;
waitUntil {moveToCompleted _unit};</sqf>
This also works with [[commandMove]]
}}
 
{{Note
|user= Waffle SS.
|timestamp= 20220725062519
|text= Seems to use PositionATL, which may be important if the destination is above a building's 1st floor.
}}

Revision as of 08:25, 25 July 2022

Hover & click on the images for description

Description

Description:
Order the given unit(s) to move to the given position (without radio messages). Upon reaching its destination, if it is the group leader it will order the group to form around it's new position. If it is not the leader, it will immediately be ordered to return to formation by the group leader and begin moving back to the group. Use doStop to stop units returning to formation. moveToCompleted will return true when a unit issued this command reaches its destination.
Groups:
Unit Control

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:
commandMove setDestination moveTo move addWaypoint

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 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.
DreadedEntity - c
Posted on Apr 02, 2022 - 15:22 (UTC)
The above note is only true of units which group leader is not the player. Player-squad will remain in position until given another order (A3 v2.08.149102)
DreadedEntity - c
Posted on Apr 02, 2022 - 20:35 (UTC)
If you need your script to halt until the unit has reached it's destination, waitUntil and moveToCompleted will come in handy:
_unit doMove _pos; waitUntil {moveToCompleted _unit};
This also works with commandMove
Waffle SS. - c
Posted on Jul 25, 2022 - 06:25 (UTC)
Seems to use PositionATL, which may be important if the destination is above a building's 1st floor.