mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
41 lines
850 B
Plaintext
41 lines
850 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* reset all variables that have been defined
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* ? <UNKNOWN>
|
|
*
|
|
* Example:
|
|
* [bob] call ace_common_fnc_resetAllDefaults
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
_unit setVariable ["ACE_isDead", nil, true];
|
|
_unit setVariable ["ACE_isUnconscious", nil, true];
|
|
|
|
if (isPlayer _unit) then {
|
|
[true] call FUNC(setVolume);
|
|
|
|
if !(isNil QGVAR(DISABLE_USER_INPUT_COLLECTION)) then {
|
|
// clear all disable user input
|
|
{
|
|
[_x, false] call FUNC(setDisableUserInputStatus);
|
|
false
|
|
} count GVAR(DISABLE_USER_INPUT_COLLECTION);
|
|
};
|
|
};
|
|
|
|
{
|
|
if !(_x select 4) then {
|
|
_unit setVariable [_x select 0, nil, _x select 3];
|
|
};
|
|
false
|
|
} count ([_unit] call FUNC(getAllDefinedSetVariables));
|