waypointAttachObject: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(added alternative syntax, example, note)
m (Replaced <code> with <sqf>)
 
(50 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= ofpe
|version1= 1.00


|1.00|= Game version
|game2= arma1
____________________________________________________________________________________________
|version2= 1.00


| Attaches a static object via it's numeric ID to the given waypoint.
|game3= arma2
<br>The alternative syntax is (at least) available since {{Name|Arma 2}}. |= Description
|version3= 1.00
____________________________________________________________________________________________


| waypoint '''waypointAttachObject''' objectID |= Syntax
|game4= arma2oa
|version4= 1.50


|p1= waypoint: [[Array]] - format [[Waypoint]] |= Parameter 1
|game5= tkoh
|version5= 1.00


|p2= objectID: [[Number]] |= Parameter 2
|game6= arma3
|version6= 0.50


| [[Nothing]] |= Return value
|gr1= Waypoints
____________________________________________________________________________________________


|s2= waypoint '''waypointAttachObject''' object |= Alternative Syntax
|descr= Attaches a static object via it is numeric ID to the given waypoint.


|p21= waypoint: [[Array]] - format [[Waypoint]] |= Parameter 1
{{Feature|important|
* The [[#Syntax|main syntax]] doesn't work in {{arma3}} anymore.
* The [[#Alternative_Syntax|alternative syntax]] is (at least) available since {{arma2}}.
}}
 
|s1= waypoint [[waypointAttachObject]] objectID
 
|p1= waypoint: [[Array]] - format [[Waypoint]]
 
|p2= objectID: [[Number]]


|p22= object: [[Object]] - static object |= Parameter 2
|r1= [[Nothing]]


|r2= [[Nothing]] |= Return value
|s2= waypoint [[waypointAttachObject]] object
____________________________________________________________________________________________
 
|x1= <code>[_grp, 2] [[waypointAttachObject]] 1234</code> |= Example 1


|x2= <code>_wp = [[group]] [[player]] [[addWaypoint]] <nowiki>[[</nowiki>1907.5,5746.5,0.00144196],0];
|p21= waypoint: [[Array]] - format [[Waypoint]]
_wp [[waypointAttachObject]] (([[waypointPosition]] _wp) [[nearestObject]] 66220);</code> |= Example 2
____________________________________________________________________________________________


| [[waypointAttachedObject]] |= See also
|p22= object: [[Object]] - static object


}}
|r2= [[Nothing]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>[_grp, 2] waypointAttachObject 1234;</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on June 20, 2014 - 18:34
<dt class="note">'''[[User:Master85|Master85]] ([[User talk:Master85|talk]])'''<dd class="note">In Arma 3 1.22 only the alternative syntax is working.
<!-- Note Section END -->
</dl>


<h3 style="display:none">Bottom Section</h3>
|x2= <sqf>private _wp = group player addWaypoint [[1907.5, 5746.5, 0.00144196], 0];
_wp waypointAttachObject ((waypointPosition _wp) nearestObject 66220);</sqf>


[[Category:Scripting Commands|WAYPOINTATTACHOBJECT]]
|seealso= [[waypointAttachedObject]]
[[Category:Scripting Commands OFP Elite |WAYPOINTATTACHOBJECT]]
}}
[[Category:Scripting Commands ArmA|WAYPOINTATTACHOBJECT]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Waypoints|{{uc:{{PAGENAME}}}}]]

Latest revision as of 08:50, 17 May 2022

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