ACE3/addons/medical/functions/fnc_setDead.sqf

66 lines
1.9 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Either kills a unit or puts the unit in a revivable state, depending on the settings.
*
* Arguments:
* 0: The unit that will be killed <OBJECT>
* 1: Force Dead (ignore revive setting) <BOOL>
* 1: Delay setDamage for a frame <BOOL>
*
* ReturnValue:
* Did he died? <BOOL>
*
* Public: yes
*/
#include "script_component.hpp"
private ["_reviveVal", "_lifesLeft"];
params ["_unit", ["_force", false], ["_delaySetDamage", false]];
if ((!alive _unit) || {_unit getVariable ["ACE_isDead", false]}) exitWith {true};
if (!local _unit) exitwith {
2016-06-03 18:57:21 +00:00
[QGVAR(setDead), [_unit, _force], _unit] call CBA_fnc_targetEvent;
2015-04-03 19:49:46 +00:00
false;
};
2015-04-29 20:04:46 +00:00
_reviveVal = _unit getVariable [QGVAR(enableRevive), GVAR(enableRevive)];
if (((_reviveVal == 1 && {[_unit] call EFUNC(common,isPlayer)} || _reviveVal == 2)) && !_force) exitwith {
if (_unit getVariable [QGVAR(inReviveState), false]) exitwith {
2015-04-03 21:56:32 +00:00
if (GVAR(amountOfReviveLives) > 0) then {
_lifesLeft = _unit getVariable[QGVAR(amountOfReviveLives), GVAR(amountOfReviveLives)];
2015-04-03 21:56:32 +00:00
if (_lifesLeft == 0) then {
[_unit, true] call FUNC(setDead);
};
};
false;
};
_unit setVariable [QGVAR(inReviveState), true, true];
2016-03-02 10:01:39 +00:00
_unit setVariable [QGVAR(reviveStartTime), CBA_missionTime];
2015-04-03 19:49:46 +00:00
[_unit, true] call FUNC(setUnconscious);
2015-03-09 21:27:01 +00:00
// Run the loop that tracks the revive state
[_unit ] call FUNC(reviveStateLoop);
2015-04-03 19:49:46 +00:00
false;
};
_unit setVariable ["ACE_isDead", true, true];
if (isPLayer _unit) then {
_unit setVariable ["isDeadPlayer", true, true];
};
2016-06-03 18:57:21 +00:00
["ace_killed", [_unit]] call CBA_fnc_localEvent;
2016-02-18 01:54:43 +00:00
//Delay a frame before killing the unit via scripted damage
//to avoid triggering the "Killed" Event twice (and having the wrong killer)
if (!_delaySetDamage) then {
[_unit, 1] call FUNC(setStructuralDamage);
} else {
[FUNC(setStructuralDamage), [_unit, 1]] call CBA_fnc_execNextFrame;
};
2015-04-03 19:49:46 +00:00
true;