mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
48 lines
959 B
Plaintext
48 lines
959 B
Plaintext
/**
|
|
* fnc_updateSetting.sqf
|
|
* @Descr:
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: true
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_changed"];
|
|
PARAMS_3(_type,_name,_newValue);
|
|
|
|
_changed = false;
|
|
|
|
switch (_type) do {
|
|
case (MENU_TAB_OPTIONS): {
|
|
{
|
|
if ((_x select 0) == _name) then {
|
|
|
|
if ((_x select 1) == "BOOL") then {
|
|
_newValue = [false, true] select _newValue;
|
|
};
|
|
|
|
if !((_x select 8) isEqualTo _newValue) then {
|
|
_changed = true;
|
|
_x set [8, _newValue];
|
|
} ;
|
|
|
|
};
|
|
} foreach GVAR(clientSideOptions);
|
|
};
|
|
case (MENU_TAB_COLORS): {
|
|
{
|
|
if (((_x select 0) == _name) && {!((_x select 8) isEqualTo _newValue)}) then {
|
|
_changed = true;
|
|
_x set [8, _newValue];
|
|
};
|
|
} foreach GVAR(clientSideColors);
|
|
};
|
|
};
|
|
|
|
if (_changed) then {
|
|
profileNamespace setVariable [_name, _newValue];
|
|
[_name, _newValue] call EFUNC(common,setSetting);
|
|
};
|