mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
632 B
Plaintext
34 lines
632 B
Plaintext
/*
|
|
Name: ACE_Respawn_fnc_handleKilled
|
|
|
|
Author(s):
|
|
bux578
|
|
|
|
Description:
|
|
Handles the XEH Killed event
|
|
|
|
Parameters:
|
|
0: OBJECT - Killed unit
|
|
1: OBJECT - Attacker
|
|
|
|
Returns:
|
|
VOID
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_killedUnit"];
|
|
|
|
_killedUnit = _this select 0;
|
|
|
|
// Saves the gear when the player is killed
|
|
GVAR(unitGear) = [];
|
|
|
|
if (GVAR(SavePreDeathGear)) then {
|
|
GVAR(unitGear) = [_killedUnit] call EFUNC(common,getAllGear);
|
|
};
|
|
|
|
if (missionNamespace getVariable [QGVAR(showFriendlyFireMessage), false]) then {
|
|
[_this, FUNC(showFriendlyFireMessage), 2] call EFUNC(common,execRemoteFnc);
|
|
};
|