waypointAttachObject: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| arma1 |Game name=
| arma1


|1.00|Game version=
|1.00


|gr1= Waypoints |GROUP1=
|gr1= Waypoints


| 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 12: Line 12:
* The [[#Syntax|main syntax]] doesn't work in {{arma3}} anymore.
* The [[#Syntax|main syntax]] doesn't work in {{arma3}} anymore.
* The [[#Alternative_Syntax|alternative syntax]] is (at least) available since {{arma2}}.
* The [[#Alternative_Syntax|alternative syntax]] is (at least) available since {{arma2}}.
}} |DESCRIPTION=
}}


| waypoint [[waypointAttachObject]] objectID |SYNTAX=
| waypoint [[waypointAttachObject]] objectID


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


|p2= objectID: [[Number]] |PARAMETER2=
|p2= objectID: [[Number]]


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


|s2= waypoint [[waypointAttachObject]] object |Alternative Syntax=
|s2= waypoint [[waypointAttachObject]] object


|p21= waypoint: [[Array]] - format [[Waypoint]] |PARAMETER21=
|p21= waypoint: [[Array]] - format [[Waypoint]] |PARAMETER21=
Line 28: Line 28:
|p22= object: [[Object]] - static object |PARAMETER22=
|p22= object: [[Object]] - static object |PARAMETER22=


|r2= [[Nothing]] |RETURNVALUE2=
|r2= [[Nothing]]
   
   
|x1= <code>[_grp, 2] [[waypointAttachObject]] 1234;</code> |EXAMPLE1=
|x1= <code>[_grp, 2] [[waypointAttachObject]] 1234;</code>


|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>


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



Revision as of 12:41, 18 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

Bottom Section