mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
3b7a3047cd
* Enabled refuel for non-AllVehicles objects. Un-magic'd refuel progress timer. * Changed helper attach position to centre of object. Offset applied when rope attached. * Made fully compatible with non-thingX simulation types. Removed destruction effects of helper object. * Using arma model. Removed ACE_Actions from helper object. * Correct use of hideObjectGlobal * Remove actions, cargo, repair on helper * Switched helper to be setVar'd on the nozzle object
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
/*
|
|
* Author: GitHawk
|
|
* Resets a fuel vehicle in case is got bugged
|
|
*
|
|
* Arguments:
|
|
* 0: Fuel truck <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [truck] call ace_refuel_fnc_reset
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params [["_target", objNull, [objNull]]];
|
|
|
|
[_target, "blockEngine", "ACE_Refuel", false] call EFUNC(common,statusEffect_set);
|
|
_target setVariable [QGVAR(isConnected), false, true];
|
|
|
|
private _nozzle = _target getVariable [QGVAR(ownedNozzle), nil];
|
|
if !(isNil "_nozzle") then {
|
|
private _nozzleTarget = _nozzle getVariable [QGVAR(sink), nil];
|
|
if !(isNil "_nozzleTarget") then {
|
|
_nozzleTarget setVariable [QGVAR(nozzle), nil, true];
|
|
};
|
|
|
|
private _rope = _nozzle getVariable [QGVAR(rope), objNull];
|
|
if !(isNull _rope) then {
|
|
ropeDestroy _rope;
|
|
};
|
|
private _helper = _nozzle getVariable [QGVAR(helper), objNull];
|
|
if !(isNull _helper) then {
|
|
deleteVehicle _helper;
|
|
};
|
|
|
|
{
|
|
[QGVAR(resetLocal), [_x, _nozzle], _x] call CBA_fnc_targetEvent;
|
|
} count allPlayers;
|
|
deleteVehicle _nozzle;
|
|
};
|
|
_target setVariable [QGVAR(ownedNozzle), nil, true];
|