ACE3/addons/arsenal/functions/fnc_removeDefaultLoadout.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

29 lines
732 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: LinkIsGrim
* Removes a loadout from the "Default Loadouts" list.
*
* Arguments:
* 0: Name of loadout <STRING>
* 1: Remove globally <BOOL> (default: false)
*
* Return Value:
* None
*
* Example:
* ["Squad Leader", true] call ace_arsenal_fnc_removeDefaultLoadout
*
* Public: Yes
*/
params [["_name", "", [""]], ["_global", false, [false]]];
if (_global) then {
[QGVAR(removeDefaultLoadout), [_name]] call CBA_fnc_remoteEvent;
};
GVAR(defaultLoadoutsList) deleteAt (GVAR(defaultLoadoutsList) findIf {(_x select 0) == _name});
if (is3DEN) then {
set3DENMissionAttributes [[QGVAR(DummyCategory), QGVAR(DefaultLoadoutsListAttribute), GVAR(defaultLoadoutsList)]];
};