ACE3/addons/rearm/functions/fnc_canPickUpAmmo.sqf

22 lines
438 B
Plaintext

/*
* Author: GitHawk
* Check if a unit can pick up ammo.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Target <OBJECT>
*
* Return Value:
* Can Pick Up Ammo <BOOL>
*
* Example:
* [player, tank] call ace_rearm_fnc_canPickUpAmmo
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit", "_target"];
!(isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {(_target distance _unit) > REARM_ACTION_DISTANCE})