ACE3/addons/refuel/functions/fnc_turnOff.sqf

21 lines
361 B
Plaintext
Raw Normal View History

2015-08-13 17:33:55 +00:00
/*
* Author: GitHawk
* Turn off a fuel nozzle
2015-08-13 17:33:55 +00:00
*
* Arguments:
* 0: The object holding the nozzle <OBJECT>
2015-08-13 17:33:55 +00:00
*
* Return Value:
* None
2015-08-13 17:33:55 +00:00
*
* Example:
* [tank] 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"
params ["_nozzleHolder"];
2015-08-13 17:33:55 +00:00
(_nozzleHolder getVariable QGVAR(nozzle)) setVariable [QGVAR(isRefueling), false, true];