ACE3/addons/common/functions/fnc_resetAllDefaults.sqf

40 lines
981 B
Plaintext
Raw Normal View History

2015-01-16 23:21:47 +00:00
/**
* fn_resetAllDefaults_f.sqf
* @Descr: reset all variables that have been defined
* @Author: Glowbal
*
* @Arguments: []
* @Return:
* @PublicAPI: false
*/
#include "script_component.hpp"
2015-05-14 18:06:06 +00:00
PARAMS_1(_unit);
2015-01-16 23:21:47 +00:00
_unit setvariable ["ACE_isDead",nil,true];
_unit setvariable ["ACE_isUnconscious", nil, true];
2015-01-16 23:21:47 +00:00
if (isPlayer _unit) then {
[true] call FUNC(setVolume);
[false] call FUNC(disableKeyInput);
if (["ace_medical"] call FUNC(isModLoader)) then {
[false] call EFUNC(medical,effectBlackOut);
};
2015-01-17 12:54:44 +00:00
if !(isnil QGVAR(DISABLE_USER_INPUT_COLLECTION)) then {
2015-01-18 19:09:19 +00:00
// clear all disable user input
{
2015-05-14 22:12:40 +00:00
[_x, false] call FUNC(setDisableUserInputStatus);
}foreach GVAR(DISABLE_USER_INPUT_COLLECTION);
2015-01-18 19:09:19 +00:00
};
2015-01-16 23:21:47 +00:00
};
2015-01-17 12:54:44 +00:00
{
2015-01-18 19:09:19 +00:00
if (!(_x select 4)) then {
_unit setvariable [(_x select 0),nil,_x select 3];
};
2015-05-14 18:06:06 +00:00
} forEach ([_unit] call FUNC(getAllDefinedSetVariables));
2015-01-17 12:54:44 +00:00
2015-04-29 22:53:49 +00:00
_unit setVariable ["ACE_forceWalkStatusNumber", 0, true];