2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-05-14 22:04:58 +00:00
|
|
|
/*
|
2023-08-17 10:02:17 +00:00
|
|
|
* Author: kymckay
|
2015-07-20 20:07:53 +00:00
|
|
|
* Flips the unconscious state of the unit the module is placed on.
|
2015-05-14 22:04:58 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-15 20:11:49 +00:00
|
|
|
* 0: The module logic <OBJECT>
|
|
|
|
* 1: Synchronized units <ARRAY>
|
|
|
|
* 2: Activated <BOOL>
|
2015-05-14 22:04:58 +00:00
|
|
|
*
|
2015-08-15 20:11:49 +00:00
|
|
|
* Return Value:
|
2016-11-15 12:07:48 +00:00
|
|
|
* None
|
2015-05-14 22:04:58 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [LOGIC, [bob, kevin], true] call ace_zeus_fnc_moduleUnconscious
|
|
|
|
*
|
2015-08-15 20:11:49 +00:00
|
|
|
* Public: No
|
2015-05-14 22:04:58 +00:00
|
|
|
*/
|
|
|
|
|
2017-12-10 18:29:38 +00:00
|
|
|
params ["_logic"];
|
2015-05-18 11:36:39 +00:00
|
|
|
|
2017-12-10 18:29:38 +00:00
|
|
|
if !(local _logic) exitWith {};
|
2015-05-18 11:36:39 +00:00
|
|
|
|
|
|
|
if (isNil QEFUNC(medical,setUnconscious)) then {
|
2017-03-02 23:47:49 +00:00
|
|
|
[LSTRING(RequiresAddon)] call FUNC(showMessage);
|
2015-05-18 11:36:39 +00:00
|
|
|
} else {
|
2017-10-10 14:39:59 +00:00
|
|
|
private _mouseOver = GETMVAR(bis_fnc_curatorObjectPlaced_mouseOver,[""]);
|
2015-05-18 11:36:39 +00:00
|
|
|
|
2015-07-20 20:07:53 +00:00
|
|
|
if ((_mouseOver select 0) != "OBJECT") then {
|
2017-03-02 23:47:49 +00:00
|
|
|
[LSTRING(NothingSelected)] call FUNC(showMessage);
|
2015-05-18 21:49:47 +00:00
|
|
|
} else {
|
2017-10-10 14:39:59 +00:00
|
|
|
private _unit = effectivecommander (_mouseOver select 1);
|
2015-07-20 20:07:53 +00:00
|
|
|
|
2015-05-18 21:49:47 +00:00
|
|
|
if !(_unit isKindOf "CAManBase") then {
|
2017-03-02 23:47:49 +00:00
|
|
|
[LSTRING(OnlyInfantry)] call FUNC(showMessage);
|
2015-05-18 21:49:47 +00:00
|
|
|
} else {
|
|
|
|
if !(alive _unit) then {
|
2017-03-02 23:47:49 +00:00
|
|
|
[LSTRING(OnlyAlive)] call FUNC(showMessage);
|
2015-05-18 21:49:47 +00:00
|
|
|
} else {
|
2019-04-03 13:17:17 +00:00
|
|
|
private _unconscious = GETVAR(_unit,ACE_isUnconscious,false);
|
2022-05-08 03:44:33 +00:00
|
|
|
if (_unconscious) then {
|
|
|
|
_unit setVariable [QEGVAR(medical_statemachine,AIUnconsciousness), nil, true];
|
|
|
|
} else {
|
|
|
|
_unit setVariable [QEGVAR(medical_statemachine,AIUnconsciousness), true, true];
|
|
|
|
};
|
2015-05-18 21:49:47 +00:00
|
|
|
// Function handles locality for me
|
2019-04-03 13:17:17 +00:00
|
|
|
[_unit, !_unconscious, 10e10] call EFUNC(medical,setUnconscious);
|
2015-05-18 21:49:47 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-05-14 22:04:58 +00:00
|
|
|
};
|
|
|
|
|
2015-05-18 11:36:39 +00:00
|
|
|
deleteVehicle _logic;
|