2015-08-13 17:33:55 +00:00
|
|
|
/*
|
|
|
|
* Author: GitHawk
|
2015-08-20 20:10:26 +00:00
|
|
|
* Turn off a fuel nozzle.
|
2015-08-13 17:33:55 +00:00
|
|
|
*
|
|
|
|
* 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-16 23:44:47 +00:00
|
|
|
* None
|
2015-08-13 17:33:55 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2015-08-20 20:10:26 +00:00
|
|
|
* [nozzle] call ace_refuel_fnc_turnOff
|
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
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-20 20:10:26 +00:00
|
|
|
params ["_unit", "_nozzle"];
|
2015-08-13 17:33:55 +00:00
|
|
|
|
2015-08-21 20:43:45 +00:00
|
|
|
[
|
|
|
|
2,
|
|
|
|
[_unit, _nozzle],
|
|
|
|
{
|
|
|
|
params ["_args"];
|
|
|
|
_args params ["_unit", "_nozzle"];
|
|
|
|
_nozzle setVariable [QGVAR(isRefueling), false, true];
|
|
|
|
[LSTRING(Hint_Stopped), 1.5, _unit] call EFUNC(common,displayTextStructured);
|
|
|
|
},
|
|
|
|
"",
|
|
|
|
localize LSTRING(TurnOffAction),
|
|
|
|
{true},
|
|
|
|
["isnotinside"]
|
|
|
|
] call EFUNC(common,progressBar);
|