mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
853 B
Plaintext
35 lines
853 B
Plaintext
/*
|
|
* Author: commy2, PabstMirror
|
|
* Handles the "medical_onUnconscious" event
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 0: Is Unconsisisiouses <BOOL>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [bob, true] call ACE_captives_fnc_handleOnUnconscious
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit","_isUnconc"];
|
|
|
|
if (!local _unit) exitWith {};
|
|
|
|
if (_isUnconc) then {
|
|
//Knocked out: If surrendering, stop
|
|
if (_unit getVariable [QGVAR(isSurrendering), false]) then {
|
|
[_unit, false] call FUNC(setSurrendered);
|
|
};
|
|
} else {
|
|
//Woke up: if handcuffed, goto animation
|
|
if (_unit getVariable [QGVAR(isHandcuffed), false] && {vehicle _unit == _unit}) then {
|
|
[_unit] call EFUNC(common,fixLoweredRifleAnimation);
|
|
[_unit, "ACE_AmovPercMstpScapWnonDnon", 1] call EFUNC(common,doAnimation);
|
|
};
|
|
};
|