ropes: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Some wiki formatting)
 
(27 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma3
|game1= arma3
 
|version1= 1.34
|1.34


|gr1= Ropes and Sling Loading
|gr1= Ropes and Sling Loading


|Returns all ropes attached to a ropes owner transport in an [[Array]], otherwise an empty array <tt>[]</tt> is returned.
|descr= Returns all ropes attached to a ropes owner transport vehicle.


| [[ropes]] ropesOwner
|s1= [[ropes]] ropesOwner


|p1= ropesOwner: [[Object]] - a transport from which the ropes originate
|p1= ropesOwner: [[Object]] - a transport from which the ropes originate


| [[Array]] - array of the actual rope objects
|r1= [[Array]] of [[Object]]s - array of the actual rope objects


|x1= <code>[[hint]] [[str]] ([[ropes]] [[vehicle]] [[player]]);</code>
|x1= <sqf>hint str (ropes vehicle player);</sqf>


|x2= <code>_rope1 = ([[ropes]] heli1) [[select]] 0;</code>
|x2= <sqf>_rope1 = (ropes heli1) select 0;</sqf>


|seealso= [[canSlingLoad]], [[enableRopeAttach]], [[getSlingLoad]], [[ropeAttachedObjects]], [[ropeAttachTo]], [[ropeDestroy]], [[ropeLength]], [[ropeUnwound]], [[ropeAttachedTo]], [[ropeCreate]], [[ropeDetach]], [[ropeAttachEnabled]], [[ropeCut]], [[ropeEndPosition]], [[ropeUnwind]], [[setSlingLoad]], [[slingLoadAssistantShown]]
|seealso= [[canSlingLoad]] [[enableRopeAttach]] [[getSlingLoad]] [[ropeAttachedObjects]] [[ropeAttachTo]] [[ropeDestroy]] [[ropeLength]] [[ropeUnwound]] [[ropeAttachedTo]] [[ropeCreate]] [[ropeDetach]] [[ropeAttachEnabled]] [[ropeCut]] [[ropeEndPosition]] [[ropeUnwind]] [[setSlingLoad]] [[slingLoadAssistantShown]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Waffle SS.
<dd class="notedate">Posted on 05 April, 2014</dd>
|timestamp= 20141013020500
<dt class="note">[[User:Waffle SS.|Waffle SS.]]</dt>
|text= The [[ropes]] command seems to return each individual sling load rope.
<dd class="note">
The [[ropes]] command seems to return each individual sling load rope.
[[ropes]] will return an empty [[Array]] if the sling load ropes are not deployed.
[[ropes]] will return an empty [[Array]] if the sling load ropes are not deployed.
Ropes as of A3 1.33 have a cfgVehicles classname of "Rope".
Ropes as of A3 1.33 have a cfgVehicles classname of "Rope".
 
}}
</dl>
 
{{GameCategory|arma3|Scripting Commands}}

Latest revision as of 23:30, 13 May 2023

Hover & click on the images for description

Description

Description:
Returns all ropes attached to a ropes owner transport vehicle.
Groups:
Ropes and Sling Loading

Syntax

Syntax:
ropes ropesOwner
Parameters:
ropesOwner: Object - a transport from which the ropes originate
Return Value:
Array of Objects - array of the actual rope objects

Examples

Example 1:
Example 2:
_rope1 = (ropes heli1) select 0;

Additional Information

See also:
canSlingLoad enableRopeAttach getSlingLoad ropeAttachedObjects ropeAttachTo ropeDestroy ropeLength ropeUnwound ropeAttachedTo ropeCreate ropeDetach ropeAttachEnabled ropeCut ropeEndPosition ropeUnwind setSlingLoad slingLoadAssistantShown

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
Waffle SS. - c
Posted on Oct 13, 2014 - 02:05 (UTC)
The ropes command seems to return each individual sling load rope. ropes will return an empty Array if the sling load ropes are not deployed. Ropes as of A3 1.33 have a cfgVehicles classname of "Rope".