#include "..\script_component.hpp" /* * Author: GitHawk * Checks if unit can read supply counter. [Only for GVAR(supply) > 0] * * Arguments: * 0: Ammo Truck * 1: Unit * * Return Value: * Can read supply counter * * Example: * [ammo_truck, player] call ace_rearm_fnc_canReadSupplyCounter * * Public: No */ params ["_truck", "_unit"]; (alive _unit) && {alive _truck} && {(_truck distance _unit) < REARM_ACTION_DISTANCE} && {GVAR(supply) > 0} && {[_unit, _truck, ["IsNotInside"]] call EFUNC(common,canInteractWith)} // manually added actions need this && {(_truck getVariable [QGVAR(currentSupply), 0]) >= 0}