2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-08-13 17:33:55 +00:00
|
|
|
/*
|
|
|
|
* Author: GitHawk
|
|
|
|
* Check if a unit can disconnect a fuel nozzle
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-20 20:10:26 +00:00
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: 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:
|
2015-08-20 20:10:26 +00:00
|
|
|
* [player, nozzle] call ace_refuel_fnc_canDisconnect
|
2015-08-13 17:33:55 +00:00
|
|
|
*
|
2015-08-14 01:18:54 +00:00
|
|
|
* Public: No
|
2015-08-13 17:33:55 +00:00
|
|
|
*/
|
|
|
|
|
2016-02-02 14:03:06 +00:00
|
|
|
params [["_unit", objNull, [objNull]], ["_nozzle", objNull, [objNull]]];
|
2015-08-13 17:33:55 +00:00
|
|
|
|
2015-08-20 20:10:26 +00:00
|
|
|
if (isNull _unit ||
|
|
|
|
{isNull _nozzle} ||
|
|
|
|
{!(_unit isKindOf "CAManBase")} ||
|
|
|
|
{!local _unit} ||
|
2016-09-05 18:23:28 +00:00
|
|
|
{!isNull (_unit getVariable [QGVAR(nozzle), objNull])} ||
|
2015-08-20 20:10:26 +00:00
|
|
|
{(_nozzle distance _unit) > REFUEL_ACTION_DISTANCE}) exitWith {false};
|
2015-08-13 17:33:55 +00:00
|
|
|
|
2016-02-02 14:03:06 +00:00
|
|
|
private _sink = _nozzle getVariable [QGVAR(sink), objNull];
|
2015-08-20 20:10:26 +00:00
|
|
|
!((isNull _sink) || {_nozzle getVariable [QGVAR(isRefueling), false]})
|