ACE3/addons/refuel/functions/fnc_canDisconnect.sqf

34 lines
837 B
Plaintext
Raw Normal View History

2015-08-13 17:33:55 +00:00
/*
* Author: GitHawk
* Check if a unit can disconnect a fuel nozzle
*
* Arguments:
* 0: The unit <OBJECT>
2015-08-14 01:18:54 +00:00
* 1: The object holding the nozzle <OBJECT>
2015-08-13 17:33:55 +00:00
*
* Return Value:
2015-08-14 01:18:54 +00:00
* Can disconnect <BOOL>
2015-08-13 17:33:55 +00:00
*
* Example:
* [player, truck] call ace_refuel_fnc_canDisconnect
*
2015-08-14 01:18:54 +00:00
* Public: No
2015-08-13 17:33:55 +00:00
*/
#include "script_component.hpp"
private ["_nozzle", "_sink", "_fueling"];
params ["_unit", "_nozzleHolder"];
if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || {(_nozzleHolder distance _unit) > REFUEL_ACTION_DISTANCE}) exitWith {false};
2015-08-13 17:33:55 +00:00
_nozzle = _nozzleHolder getVariable [QGVAR(nozzle), objNull];
if (isNull _nozzle) exitWith {false};
_sink = _nozzle getVariable [QGVAR(sink), objNull];
if (isNull _sink) exitWith {false};
_fueling = _nozzle getVariable [QGVAR(fueling), 0];
if (_fueling == 1) exitWith {false};
true