mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
727 B
Plaintext
30 lines
727 B
Plaintext
|
/*
|
||
|
* Author: GitHawk
|
||
|
* Check if a unit can turn off a fuel nozzle
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: The unit <OBJECT>
|
||
|
* 1: The object holding the nozzle <OBJECT>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* Can turn off
|
||
|
*
|
||
|
* Example:
|
||
|
* [player, truck] call ace_refuel_fnc_canTurnOff
|
||
|
*
|
||
|
* Public: Yes
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
private ["_nozzle", "_fueling"];
|
||
|
params ["_unit", "_nozzleHolder"];
|
||
|
|
||
|
if (isNull _unit || {!(_unit isKindOf "CAManBase")} || {!local _unit} || { (_nozzleHolder distance _unit) > REFUEL_ACTION_DISTANCE}) exitWith {false};
|
||
|
|
||
|
_nozzle = _nozzleHolder getVariable [QGVAR(nozzle), objNull];
|
||
|
if (isNull _nozzle) exitWith {false};
|
||
|
|
||
|
_fueling = _nozzle getVariable [QGVAR(fueling), 0];
|
||
|
if (_fueling == 0) exitWith {false};
|
||
|
|
||
|
true
|