mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8b53b4f0d0
Moved macros to function Fixed MP bugs Changed class history of nozzle
36 lines
679 B
Plaintext
36 lines
679 B
Plaintext
/*
|
|
* Author: GitHawk
|
|
* Turn on a fuel nozzle.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Nozzle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, nozzle] call ace_refuel_fnc_turnOn
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_nozzle"];
|
|
|
|
[
|
|
2,
|
|
[_unit, _nozzle],
|
|
{
|
|
private "_source";
|
|
params ["_args"];
|
|
_args params ["_unit", "_nozzle"];
|
|
_nozzle setVariable [QGVAR(isRefueling), true, true];
|
|
[LSTRING(Hint_Started), 1.5, _unit] call EFUNC(common,displayTextStructured);
|
|
},
|
|
"",
|
|
localize LSTRING(TurnOnAction),
|
|
{true},
|
|
["isnotinside"]
|
|
] call EFUNC(common,progressBar);
|