mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
7a6c837f1b
* Warn users about duplicate loadout validation * Update XEH_postInit.sqf
76 lines
3.7 KiB
Plaintext
76 lines
3.7 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
if (!isMultiplayer) exitWith {};
|
|
|
|
["CBA_settingsInitialized", {
|
|
// Register and remove HCs if not client that is not server and distribution or end mission enabled
|
|
if ((!hasInterface || isServer) && {XGVAR(enabled) || XGVAR(endMission) != 0}) then {
|
|
if (isServer) then {
|
|
// Request rebalance on any unit spawn (only if distribution enabled)
|
|
if (XGVAR(enabled)) then {
|
|
["CAManBase", "initPost", LINKFUNC(handleSpawn), nil, nil, true] call CBA_fnc_addClassEventHandler;
|
|
};
|
|
// Add disconnect EH
|
|
addMissionEventHandler ["HandleDisconnect", {call FUNC(handleDisconnect)}];
|
|
|
|
[QGVAR(transferGroupsRebalance), {
|
|
params ["_groups", "_owner", "_rebalance"];
|
|
|
|
if (_groups isNotEqualTo [] && {_owner > 1}) then {
|
|
{
|
|
_x setGroupOwner _owner;
|
|
} forEach _groups;
|
|
};
|
|
|
|
// Rebalance units
|
|
if (_rebalance in [REBALANCE, FORCED_REBALANCE]) then {
|
|
(_rebalance == FORCED_REBALANCE) call FUNC(rebalance);
|
|
};
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
// If CBA's loadout validation is enabled, warn users
|
|
if (XGVAR(transferLoadout) > 0 && {(missionNamespace getVariable ["CBA_network_loadoutValidation", 0]) isEqualTo 2}) then {
|
|
WARNING("CBA_network_loadoutValidation is enabled - acex_headless_transferLoadout should therefore be disabled");
|
|
[QEGVAR(common,displayTextStructured), ["CBA_network_loadoutValidation is enabled - acex_headless_transferLoadout should therefore be disabled", 3]] call CBA_fnc_globalEvent;
|
|
};
|
|
|
|
["CBA_SettingChanged", {
|
|
params ["_setting", "_value"];
|
|
|
|
if (_setting != "CBA_network_loadoutValidation") exitWith {};
|
|
|
|
if (XGVAR(transferLoadout) > 0 && {_value isEqualTo 2}) then {
|
|
WARNING("CBA_network_loadoutValidation is enabled - acex_headless_transferLoadout should therefore be disabled");
|
|
[QEGVAR(common,displayTextStructured), ["CBA_network_loadoutValidation is enabled - acex_headless_transferLoadout should therefore be disabled", 3]] call CBA_fnc_globalEvent;
|
|
};
|
|
}] call CBA_fnc_addEventHandler;
|
|
} else {
|
|
// Register HC (this part happens on HC only)
|
|
[QXGVAR(headlessClientJoined), [player]] call CBA_fnc_globalEvent; // Global event for API purposes
|
|
};
|
|
|
|
// Transfer loadouts (naked unit work-around)
|
|
if (XGVAR(transferLoadout) > 0) then {
|
|
["CAManBase", "Local", {
|
|
params ["_unit", "_local"];
|
|
|
|
// Check if naked unit bug happened
|
|
if (_local && {uniform _unit == ""}) then {
|
|
scopeName QGVAR(applyLoadout);
|
|
INFO_1("Unit [%1] became local with broken loadout - attempting to fix",_unit);
|
|
if (XGVAR(transferLoadout) == 1) then {
|
|
// Transferred loadout, if unavailable reset to config default (still better than naked)
|
|
private _loadout = _unit getVariable [QGVAR(loadout), []];
|
|
if (_loadout isNotEqualTo []) then {
|
|
[_unit, _loadout] call CBA_fnc_setLoadout;
|
|
breakOut QGVAR(applyLoadout);
|
|
};
|
|
};
|
|
// Config default loadout
|
|
_unit setUnitLoadout (typeOf _unit);
|
|
};
|
|
}] call CBA_fnc_addClassEventHandler;
|
|
};
|
|
};
|
|
}] call CBA_fnc_addEventHandler;
|