ACE3/addons/refuel/functions/fnc_disconnect.sqf

29 lines
587 B
Plaintext
Raw Normal View History

2015-08-13 17:33:55 +00:00
/*
* Author: GitHawk
* Disconnect a fuel nozzle
*
* Arguments:
* 0: The unit <OBJECT>
* 1: The object holding the nozzle <OBJECT>
*
* Return Value:
* NIL
*
* Example:
* [unit, truck] call ace_refuel_fnc_disconnect
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_unit", "_nozzleHolder"];
_nozzle = _nozzleHolder getVariable QGVAR(nozzle);
detach _nozzle;
_nozzle setVariable [QGVAR(sink), objNull];
_nozzleHolder setVariable [QGVAR(nozzle), objNull, true];
_unit setVariable [QGVAR(nozzle), _nozzle];
[_unit, _nozzleHolder, _nozzle] call FUNC(takeNozzle);