setSlingLoad

From Bohemia Interactive Community
Revision as of 00:12, 14 May 2023 by Lou Montana (talk | contribs) (Text replacement - ">Posted on November ([0-9]{1})[ a-zA-Z]*, ([0-9]{4})" to ">Posted on $2-11-0$1")
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Creates a sling loading from a helicopter to an entity if possible. To unload cargo, pass objNull as second param.
FROM object has to be a helicoper, alive with rope attachment enabled, TO object has to be an entity, alive with rope attachment enabled.
Groups:
Ropes and Sling Loading

Syntax

Syntax:
heli setSlingLoad cargo
Parameters:
heli: Object - the helicopter slinging the load
cargo: Object - the cargo load entity
Return Value:
Boolean - true on success

Examples

Example 1:
_success = heli1 setSlingLoad veh1;
Example 2:
To unload cargo:
_success = heli setSlingLoad objNull;

Additional Information

See also:
ropes canSlingLoad enableRopeAttach getSlingLoad ropeAttachedObjects ropeAttachTo ropeDestroy ropeLength ropeUnwound ropeAttachedTo ropeCreate ropeDetach ropeAttachEnabled ropeCut ropeEndPosition ropeUnwind 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


Posted on 2014-11-08 - 14:42 (UTC)
Tajin
"... if possible "
FYI, that only means that 'vehicle' has to be able to lift 'cargo'. The position/distance does not matter, 'cargo' is automatically moved to a position that is close enough but doesn't doesn't collide with 'vehicle'. (can also be used if 'vehicle' is not flying, in which case 'cargo' will be placed and attached on the ground next to it).