ACE3/addons/dragging/functions/fnc_canCarry.sqf

25 lines
832 B
Plaintext
Raw Normal View History

2015-03-17 14:42:25 +00:00
/*
* Author: commy2
*
* Check if unit can carry the object. Doesn't check weight.
*
2015-08-09 12:53:13 +00:00
* Arguments:
* 0: Unit that should do the carrying <OBJECT>
* 1: Object to carry <OBJECT>
2015-03-17 14:42:25 +00:00
*
2015-08-09 12:53:13 +00:00
* Return Value:
* Can the unit carry the object? <BOOL>
*
* Public: No
2015-03-17 14:42:25 +00:00
*/
#include "script_component.hpp"
2015-08-09 12:53:13 +00:00
params ["_unit", "_target"];
2015-03-17 14:42:25 +00:00
if !([_unit, _target, []] call EFUNC(common,canInteractWith)) exitWith {false};
// a static weapon has to be empty for dragging
if ((typeOf _target) isKindOf "StaticWeapon" && {count crew _target > 0}) exitWith {false};
alive _target && {vehicle _target == _target} && {_target getVariable [QGVAR(canCarry), false]} && {animationState _target in ["", "unconscious"] || (_target getvariable ["ACE_isUnconscious", false]) || (_target isKindOf "CAManBase" && {(_target getHitPointDamage "HitLegs") > 0.4})}