setWPPos: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Text replacement - "killzone_kid" to "Killzone_Kid")
 
(One intermediate revision by one other user not shown)
Line 29: Line 29:
|s1= waypoint [[setWPPos]] pos
|s1= waypoint [[setWPPos]] pos


|p1= waypoint: [[Array]] - format [[Waypoint]]
|p1= waypoint: [[Array]] format [[Waypoint]]


|p2= pos: [[Array]] - format [[Position#PositionAGL|PositionAGL]]
|p2= pos: [[Array]] format [[Position#PositionAGL|PositionAGL]]


|r1= [[Nothing]]
|r1= [[Nothing]]
Line 41: Line 41:


{{Note
{{Note
|user= killzone_kid
|user= Killzone_Kid
|timestamp= 20181115142700
|timestamp= 20181115142700
|text= Even though this command can accept [[Position#Introduction|Position2D]], it is better to always explicitly state the elevation of waypoint by providing [[Position#PositionAGL|PositionAGL]].
|text= Even though this command can accept [[Position#Introduction|Position2D]], it is better to always explicitly state the elevation of waypoint by providing [[Position#PositionAGL|PositionAGL]].
}}
}}

Latest revision as of 18:52, 18 February 2024

Hover & click on the images for description

Description

Description:
Sets waypoint position.
This command is identical to setWaypointPosition [pos, -1] (see setWaypointPosition description for more information).
Groups:
Waypoints

Syntax

Syntax:
waypoint setWPPos pos
Parameters:
waypoint: Array format Waypoint
pos: Array format PositionAGL
Return Value:
Nothing

Examples

Example 1:
[_groupOne, 1] setWPPos markerPos "MarkerOne";

Additional Information

See also:
deleteWaypoint copyWaypoints setCurrentWaypoint setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointFormation setWaypointHousePosition setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible waypointAttachVehicle waypointAttachedVehicle setWaypointLoiterRadius waypointLoiterRadius addWaypoint setWaypointLoiterType waypoints waypointSpeed

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
Killzone_Kid - c
Posted on Nov 15, 2018 - 14:27 (UTC)
Even though this command can accept Position2D, it is better to always explicitly state the elevation of waypoint by providing PositionAGL.