mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
549 B
Plaintext
28 lines
549 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Called from respawn eventhandler. Resets all public object namespace variables that are added via FUNC(setVariableJIP).
|
|
*
|
|
* Arguments:
|
|
* 0: Object <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
private "_respawnVariables";
|
|
_respawnVariables = _unit getVariable ["ACE_respawnVariables", []];
|
|
|
|
// yes those
|
|
_respawnVariables pushBack "ACE_PersistentFunctions";
|
|
|
|
{
|
|
_unit setVariable [_x, _unit getVariable _x, true];
|
|
false
|
|
} count _respawnVariables;
|
|
nil
|