waypointAttachObject: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]OFP[ _]Elite(\|.*)?\]\]" to "{{GameCategory|ofpe|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma1 |Game name=
| arma1 |Game name=
Line 7: Line 6:


|gr1= Waypoints |GROUP1=
|gr1= Waypoints |GROUP1=
____________________________________________________________________________________________


| Attaches a static object via it is numeric ID to the given waypoint.
| Attaches a static object via it is numeric ID to the given waypoint.
Line 15: Line 13:
* The [[#Alternative_Syntax|alternative syntax]] is (at least) available since {{arma2}}.
* The [[#Alternative_Syntax|alternative syntax]] is (at least) available since {{arma2}}.
}} |DESCRIPTION=
}} |DESCRIPTION=
____________________________________________________________________________________________


| waypoint [[waypointAttachObject]] objectID |SYNTAX=
| waypoint [[waypointAttachObject]] objectID |SYNTAX=
Line 24: Line 21:


| [[Nothing]] |RETURNVALUE=
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________


|s2= waypoint [[waypointAttachObject]] object |Alternative Syntax=
|s2= waypoint [[waypointAttachObject]] object |Alternative Syntax=
Line 33: Line 29:


|r2= [[Nothing]] |RETURNVALUE2=
|r2= [[Nothing]] |RETURNVALUE2=
____________________________________________________________________________________________
   
   
|x1= <code>[_grp, 2] [[waypointAttachObject]] 1234;</code> |EXAMPLE1=
|x1= <code>[_grp, 2] [[waypointAttachObject]] 1234;</code> |EXAMPLE1=
Line 39: Line 34:
|x2= <code>[[private]] _wp = [[group]] [[player]] [[addWaypoint]] [<nowiki/>[1907.5, 5746.5, 0.00144196], 0];
|x2= <code>[[private]] _wp = [[group]] [[player]] [[addWaypoint]] [<nowiki/>[1907.5, 5746.5, 0.00144196], 0];
_wp [[waypointAttachObject]] (([[waypointPosition]] _wp) [[nearestObject]] 66220);</code> |EXAMPLE2=
_wp [[waypointAttachObject]] (([[waypointPosition]] _wp) [[nearestObject]] 66220);</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[waypointAttachedObject]] |SEEALSO=
| [[waypointAttachedObject]] |SEEALSO=

Revision as of 05:14, 17 January 2021

Hover & click on the images for description

Description

Description:
Attaches a static object via it is numeric ID to the given waypoint.
Groups:
Waypoints

Syntax

Syntax:
waypoint waypointAttachObject objectID
Parameters:
waypoint: Array - format Waypoint
objectID: Number
Return Value:
Nothing

Alternative Syntax

Syntax:
waypoint waypointAttachObject object
Parameters:
waypoint: Array - format Waypoint
object: Object - static object
Return Value:
Nothing

Examples

Example 1:
[_grp, 2] waypointAttachObject 1234;
Example 2:
private _wp = group player addWaypoint [[1907.5, 5746.5, 0.00144196], 0]; _wp waypointAttachObject ((waypointPosition _wp) nearestObject 66220);

Additional Information

See also:
waypointAttachedObject

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