2015-02-08 12:18:08 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
*
|
|
|
|
* ReturnValue:
|
|
|
|
* <NIL>
|
|
|
|
*
|
|
|
|
* Public: yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-30 06:17:26 +00:00
|
|
|
private ["_unit", "_force", "_reviveVal", "_lifesLeft"];
|
2015-02-08 12:18:08 +00:00
|
|
|
_unit = _this select 0;
|
|
|
|
_force = false;
|
|
|
|
if (count _this >= 2) then {
|
|
|
|
_force = _this select 1;
|
|
|
|
};
|
|
|
|
|
2015-04-03 19:49:46 +00:00
|
|
|
if (!alive _unit) exitwith{true};
|
2015-02-08 12:18:08 +00:00
|
|
|
if (!local _unit) exitwith {
|
2015-02-28 12:17:17 +00:00
|
|
|
[[_unit, _force], QUOTE(DFUNC(setDead)), _unit, false] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
|
2015-04-03 19:49:46 +00:00
|
|
|
false;
|
2015-02-08 12:18:08 +00:00
|
|
|
};
|
|
|
|
|
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 {
|
2015-04-03 21:56:32 +00:00
|
|
|
if (_unit getvariable [QGVAR(inReviveState), false]) exitwith {
|
|
|
|
if (GVAR(amountOfReviveLives) > 0) then {
|
|
|
|
_lifesLeft = _unit getvariable[QGVAR(amountOfReviveLives), GVAR(amountOfReviveLives)];
|
|
|
|
if (_lifesLeft == 0) then {
|
|
|
|
[_unit, true] call FUNC(setDead);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
false;
|
|
|
|
};
|
|
|
|
|
2015-03-09 21:27:01 +00:00
|
|
|
_unit setvariable [QGVAR(inReviveState), true, true];
|
2015-05-21 16:42:44 +00:00
|
|
|
_unit setvariable [QGVAR(reviveStartTime), ACE_time];
|
2015-04-03 19:49:46 +00:00
|
|
|
[_unit, true] call FUNC(setUnconscious);
|
2015-03-09 21:27:01 +00:00
|
|
|
|
|
|
|
[{
|
|
|
|
private ["_args","_unit","_startTime"];
|
|
|
|
_args = _this select 0;
|
|
|
|
_unit = _args select 0;
|
2015-04-03 19:49:46 +00:00
|
|
|
_startTime = _unit getvariable [QGVAR(reviveStartTime), 0];
|
2015-03-09 21:27:01 +00:00
|
|
|
|
2015-05-21 16:42:44 +00:00
|
|
|
if (ACE_time - _startTime > GVAR(maxReviveTime)) exitwith {
|
2015-03-09 21:27:01 +00:00
|
|
|
[(_this select 1)] call cba_fnc_removePerFrameHandler;
|
|
|
|
_unit setvariable [QGVAR(inReviveState), nil, true];
|
2015-04-03 19:49:46 +00:00
|
|
|
_unit setvariable [QGVAR(reviveStartTime), nil];
|
|
|
|
[_unit, true] call FUNC(setDead);
|
2015-03-09 21:27:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if !(_unit getvariable [QGVAR(inReviveState), false]) exitwith {
|
2015-04-03 21:56:32 +00:00
|
|
|
// revived without dieing, so in case we have lifes, remove one.
|
|
|
|
if (GVAR(amountOfReviveLives) > 0) then {
|
|
|
|
_lifesLeft = _unit getvariable[QGVAR(amountOfReviveLives), GVAR(amountOfReviveLives)];
|
|
|
|
_unit setvariable [QGVAR(amountOfReviveLives), _lifesLeft - 1, true];
|
|
|
|
};
|
|
|
|
|
2015-04-03 19:49:46 +00:00
|
|
|
_unit setvariable [QGVAR(reviveStartTime), nil];
|
2015-03-09 21:27:01 +00:00
|
|
|
[(_this select 1)] call cba_fnc_removePerFrameHandler;
|
|
|
|
};
|
2015-04-03 19:49:46 +00:00
|
|
|
}, 1, [_unit] ] call CBA_fnc_addPerFrameHandler;
|
|
|
|
false;
|
2015-02-08 12:18:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_unit setvariable ["ACE_isDead", true, true];
|
|
|
|
if (isPLayer _unit) then {
|
|
|
|
_unit setvariable ["isDeadPlayer", true, true];
|
|
|
|
};
|
|
|
|
_unit setdamage 1;
|
2015-04-03 19:49:46 +00:00
|
|
|
true;
|