ACE3/addons/refuel/functions/fnc_canTakeNozzle.sqf
Githawk 5e103ba398 Added nozzle
Added code for nozzle object
Params and private update
2016-02-02 15:03:06 +01:00

28 lines
664 B
Plaintext

/*
* Author: GitHawk
* Check if a unit can take a fuel nozzle
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Fuel Station or Nozzle <OBJECT>
*
* Return Value:
* Can connect <BOOL>
*
* Example:
* [player, nozzle] call ace_refuel_fnc_canTakeNozzle
*
* Public: No
*/
#include "script_component.hpp"
params [["_unit", objNull, [objNull]], ["_target", objNull, [objNull]]];
if (isNull _unit ||
{!(_unit isKindOf "CAManBase")} ||
{!local _unit} ||
{!alive _target} ||
{(_target distance _unit) > REFUEL_ACTION_DISTANCE}) exitWith {false};
!(_target getVariable [QGVAR(isConnected), false]) && {!(_unit getVariable [QGVAR(isRefueling), false])}