mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5e103ba398
Added code for nozzle object Params and private update
28 lines
596 B
Plaintext
28 lines
596 B
Plaintext
/*
|
|
* Author: GitHawk
|
|
* Check if a unit can turn off a fuel nozzle
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Nozzle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Can turn off <BOOL>
|
|
*
|
|
* Example:
|
|
* [player, nozzle] call ace_refuel_fnc_canTurnOff
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params [["_unit", objNull, [objNull]], ["_nozzle", objNull, [objNull]]];
|
|
|
|
if (isNull _unit ||
|
|
{isNull _nozzle} ||
|
|
{!(_unit isKindOf "CAManBase")} ||
|
|
{!local _unit} ||
|
|
{(_nozzle distance _unit) > REFUEL_ACTION_DISTANCE}) exitWith {false};
|
|
|
|
(_nozzle getVariable [QGVAR(isRefueling), false])
|