mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
27 lines
643 B
Plaintext
27 lines
643 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: GitHawk
|
|
* Check if a unit can store ammo in an ammo truck.
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
* 1: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Can Store Ammo <BOOL>
|
|
*
|
|
* Example:
|
|
* [ammo_truck, player] call ace_rearm_fnc_canStoreAmmo
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_truck", "_unit"];
|
|
|
|
(alive _unit)
|
|
&& {!isNull (_unit getVariable [QGVAR(dummy), objNull])}
|
|
&& {alive _truck}
|
|
&& {(_truck distance _unit) < REARM_ACTION_DISTANCE}
|
|
&& {[_unit, _truck, ["IsNotInside"]] call EFUNC(common,canInteractWith)} // manually added actions need this
|
|
&& {(_truck getVariable [QGVAR(currentSupply), 0]) >= 0}
|