ACE3/addons/refuel/functions/fnc_checkFuel.sqf
2015-08-14 03:18:54 +02:00

44 lines
1.0 KiB
Plaintext

/*
* Author: GitHawk
* Get the remaining fuel amount
*
* Arguments:
* 0: The unit <OBJECT>
* 1: The target <OBJECT>
*
* Return Value:
* None
*
* Example:
* [unit, target] call ace_refuel_fnc_checkFuel
*
* Public: No
*/
#include "script_component.hpp"
private ["_fuel", "_type"];
params ["_unit", "_target"];
if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_target distance _unit) > 7}) exitWith {0};
_fuel = [_unit, _target] call FUNC(getFuel);
[
5,
[_unit, _target, _fuel],
{
params ["_args"];
_args params ["_unit", "_target", "_fuel"];
if (_fuel > 0 ) then {
["displayTextStructured", [_unit], [[LSTRING(Hint_RemainingFuel), _fuel], 2, _unit]] call EFUNC(common,targetEvent);
} else {
["displayTextStructured", [_unit], [LSTRING(Hint_Empty), 2, _unit]] call EFUNC(common,targetEvent);
};
true
},
{true},
localize LSTRING(CheckFuel),
{true},
["isnotinside"]
] call EFUNC(common,progressBar);