mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
775 B
Plaintext
34 lines
775 B
Plaintext
/*
|
|
* Author: bux578
|
|
* Handles the XEH Respawn event.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Corpse <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [ACE_Player, old_body_lying_on_floor] call ace_respawn_fnc_handleRespawn
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
// Restores the gear when the player respawns
|
|
if (GVAR(SavePreDeathGear)) then {
|
|
[
|
|
_unit,
|
|
_unit getVariable QGVAR(unitGear),
|
|
_unit getVariable QGVAR(activeWeaponAndMuzzle)
|
|
] call FUNC(restoreGear);
|
|
};
|
|
|
|
// fix for setVariable public being lost on respawn for machines that JIP after the command was broadcasted
|
|
if (_unit getVariable ["ACE_canMoveRallypoint", false]) then {
|
|
_unit setVariable ["ACE_canMoveRallypoint", true, true];
|
|
};
|