2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-02-27 19:31:07 +00:00
|
|
|
/*
|
|
|
|
* Author: GitHawk
|
2017-06-08 16:47:52 +00:00
|
|
|
* Checks if unit can read supply counter. [Only for GVAR(supply) > 0]
|
2016-02-27 19:31:07 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Ammo Truck <OBJECT>
|
|
|
|
* 1: Unit <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Can read supply counter <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
2016-02-27 20:05:19 +00:00
|
|
|
* [ammo_truck, player] call ace_rearm_fnc_canReadSupplyCounter
|
2016-02-27 19:31:07 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
params ["_truck", "_unit"];
|
2016-02-27 19:31:07 +00:00
|
|
|
|
2017-06-08 16:47:52 +00:00
|
|
|
(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
|
2018-11-02 21:56:16 +00:00
|
|
|
&& {(_truck getVariable [QGVAR(currentSupply), 0]) >= 0}
|