waypointAttachObject: Difference between revisions
| mNo edit summary | Lou Montana (talk | contribs)   (Add synchronizeWaypoint disambiguation) | ||
| (72 intermediate revisions by 13 users not shown) | |||
| Line 1: | Line 1: | ||
| {{RV|type=command | |||
| |game1= ofpe | |||
| |version1= 1.00 | |||
| |game2= arma1 | |||
| |version2= 1.00 | |||
| |game3= arma2 | |||
| |version3= 1.00 | |||
| |game4= arma2oa | |||
| |version4= 1.50 | |||
| |game5= tkoh | |||
| |version5= 1.00 | |||
| |game6= arma3 | |||
| |version6= 0.50 | |||
| |gr1= Waypoints | |||
| |descr= Attaches a static object via its numeric ID to the given waypoint. Not to be confused with [[synchronizeWaypoint]]! | |||
| {{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]] | |||
| |r1= [[Nothing]] | |||
| |s2= waypoint [[waypointAttachObject]] object | |||
| |p21= waypoint: [[Array]] format [[Waypoint]] | |||
| |p22= object: [[Object]] - static object | |||
| |r2= [[Nothing]] | |||
| |x1= <sqf>[_grp, 2] waypointAttachObject 1234;</sqf> | |||
| |x2= <sqf> | |||
| private _wp = group player addWaypoint [[1907.5, 5746.5, 0.00144196], 0]; | |||
| _wp waypointAttachObject ((waypointPosition _wp) nearestObject 66220); | |||
| </sqf> | |||
| |seealso= [[waypointAttachedObject]] [[synchronizeWaypoint]] | |||
| }} | |||
Latest revision as of 21:51, 8 April 2025
Description
- Description:
- Attaches a static object via its numeric ID to the given waypoint. Not to be confused with synchronizeWaypoint!
- 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 synchronizeWaypoint
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
Categories: 
- Scripting Commands
- Introduced with Operation Flashpoint: Elite version 1.00
- Operation Flashpoint: Elite: New Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Waypoints
 
	




