2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-01-13 00:18:12 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Handles the Respawn Event Handler to reset effects.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: vehicle that it will be attached to (player or vehicle) <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2016-01-13 00:18:12 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [player, objNull] call ace_common_fnc_statusEffect_respawnEH
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_object"];
|
|
|
|
TRACE_1("params",_object);
|
|
|
|
|
2017-06-08 13:31:51 +00:00
|
|
|
//Only run this after the settings are initialized
|
2016-01-13 00:18:12 +00:00
|
|
|
//Need to wait for all EH to be installed (local event will happen between pre and post init)
|
|
|
|
if !(GVAR(settingsInitFinished)) exitWith {
|
2024-02-05 17:04:24 +00:00
|
|
|
TRACE_1("pushing to runAtSettingsInitialized",_this);
|
2016-01-13 00:18:12 +00:00
|
|
|
GVAR(runAtSettingsInitialized) pushBack [FUNC(statusEffect_respawnEH), _this];
|
|
|
|
};
|
|
|
|
|
2024-02-05 17:04:24 +00:00
|
|
|
if (!local _object) exitWith {TRACE_1("object no longer local",_this)};
|
|
|
|
if (isNull _object) exitWith {TRACE_1("object null",_this)};
|
2016-01-13 00:18:12 +00:00
|
|
|
|
|
|
|
//Reset any variables on "real" respawn
|
|
|
|
[_object, false] call FUNC(statusEffect_resetVariables);
|
|
|
|
|
|
|
|
//Send all Variables to client
|
|
|
|
[_object, ""] call FUNC(statusEffect_sendEffects);
|