mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
42 lines
930 B
Plaintext
42 lines
930 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) && {!((_x select 4) isEqualTo _newValue)}) then {
|
|
_changed = true;
|
|
_x set [4, _newValue];
|
|
};
|
|
} foreach GVAR(clientSideOptions);
|
|
};
|
|
case (MENU_TAB_COLORS): {
|
|
{
|
|
if (((_x select 0) == _name) && {!((_x select 3) isEqualTo _newValue)}) then {
|
|
_changed = true;
|
|
_x set [3, _newValue];
|
|
};
|
|
} foreach GVAR(clientSideColors);
|
|
};
|
|
};
|
|
|
|
if (_changed) then {
|
|
missionNameSpace setVariable [_name, _newValue];
|
|
[_type, _name] call FUNC(saveToProfile);
|
|
["SettingChanged", [_name, _newValue]] call EFUNC(common,localEvent);
|
|
TRACE_2("Variable Updated",_name,_newValue);
|
|
};
|