ACE3/addons/goggles/functions/fnc_handleKilled.sqf

39 lines
724 B
Plaintext
Raw Normal View History

2015-09-29 20:24:25 +00:00
/*
* Author: Garth 'L-H' de Wet, commy2
* Handles the player dying.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* Function is handled? <BOOL>
*
* Example:
* [bob] call ace_goggles_fnc_handleKilled
*
2015-09-29 20:24:25 +00:00
* Public: No
*/
2015-09-29 20:01:40 +00:00
#include "script_component.hpp"
2015-09-29 20:24:25 +00:00
params ["_unit"];
if (_unit != ACE_player) exitWith {true};
if (GVAR(effects) == 0) exitWith {true};
2015-09-29 20:24:25 +00:00
call FUNC(removeGlassesEffect);
if (GVAR(effects) == 2) then {
GVAR(PostProcessEyes) ppEffectEnable false;
SETGLASSES(_unit,GLASSESDEFAULT);
2015-09-29 20:24:25 +00:00
_unit setVariable ["ACE_EyesDamaged", false];
2015-09-29 20:24:25 +00:00
if (GVAR(DustHandler) != -1) then {
[GVAR(DustHandler)] call CBA_fnc_removePerFrameHandler;
};
GVAR(DustHandler) = -1;
};
2015-09-29 20:24:25 +00:00
true