mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8f494e08ae
* Add support for Tanoan fuel pumps, Flexible Tanks and Fuel Canister (as jerry can) * Add to Land_FuelStation_01_pump_malevil_F * Add Malden/Jets to required addons * REQUIRED_VERSION 1.72
51 lines
1.9 KiB
Plaintext
51 lines
1.9 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
["ace_unconscious", {_this call FUNC(handleUnconscious)}] call CBA_fnc_addEventHandler;
|
|
["weapon", FUNC(handlePlayerWeaponChanged)] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
if (isServer) then {
|
|
addMissionEventHandler ["HandleDisconnect", {_this call FUNC(handleDisconnect)}];
|
|
};
|
|
|
|
[QGVAR(resetLocal), {
|
|
_this call FUNC(resetLocal);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
// workaround for static fuel stations
|
|
if (hasInterface) then {
|
|
{
|
|
if (
|
|
configName _x isKindOf "Building" &&
|
|
{isClass (_x >> "ACE_Actions" >> "ACE_MainActions" >> QGVAR(Refuel))} &&
|
|
{getNumber (_x >> "scope") == 2}
|
|
) then {
|
|
TRACE_1("Compiling menu",configName _x);
|
|
[configName _x] call EFUNC(interact_menu,compileMenu);
|
|
};
|
|
} count ('true' configClasses (configFile >> "CfgVehicles"));
|
|
};
|
|
|
|
|
|
#ifdef DEBUG_MODE_FULL
|
|
diag_log text format ["[ACE-refuel] Showing CfgVehicles with vanilla transportFuel"];
|
|
private _fuelTrucks = configProperties [configFile >> "CfgVehicles", "(isClass _x) && {(getNumber (_x >> 'transportFuel')) > 0}", true];
|
|
{
|
|
if ((configName _x) isKindOf "Car") then {
|
|
diag_log text format ["Car [%1] needs config [fuel: %2]", configName _x, getNumber (_x >> 'transportFuel')];
|
|
} else {
|
|
diag_log text format ["Non-car? [%1] needs config [fuel: %2]", configName _x, getNumber (_x >> 'transportFuel')];
|
|
};
|
|
} forEach _fuelTrucks;
|
|
#endif
|
|
|
|
#ifdef DRAW_HOOKS_POS
|
|
addMissionEventHandler ["Draw3D", {
|
|
private _target = cursorObject;
|
|
private _cfgPos = getArray (configFile >> "CfgVehicles" >> typeOf _target >> QGVAR(hooks));
|
|
private _dynPos = _target getVariable [QGVAR(dev_hooks), []];
|
|
{
|
|
drawIcon3D ["\a3\ui_f\data\gui\cfg\hints\icon_text\group_1_ca.paa", [1,1,1,1], _target modelToWorldVisual _x, 1, 1, 0, format ["Hook %1", _forEachIndex]];
|
|
} forEach ([_dynPos, _cfgPos] select (_dynPos isEqualTo []));
|
|
}];
|
|
#endif
|