2015-05-14 22:04:58 +00:00
|
|
|
/*
|
|
|
|
* Author: SilentSpike
|
|
|
|
* Flips the unconscious state of the unit the module is attached to.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The module logic <LOGIC>
|
|
|
|
* 1: units <ARRAY>
|
|
|
|
* 2: activated <BOOL>
|
|
|
|
*
|
|
|
|
* ReturnValue:
|
|
|
|
* nil
|
|
|
|
*
|
|
|
|
* Public: no
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-18 11:36:39 +00:00
|
|
|
PARAMS_3(_logic,_units,_activated);
|
2015-05-18 11:59:37 +00:00
|
|
|
private ["_unit","_conscious"];
|
2015-05-18 11:36:39 +00:00
|
|
|
|
|
|
|
if (!_activated) exitWith {};
|
|
|
|
|
|
|
|
if (isNil QEFUNC(medical,setUnconscious)) then {
|
2015-05-18 22:06:21 +00:00
|
|
|
["STR_ACE_Zeus_RequiresAddon"] call EFUNC(common,displayTextStructured);
|
2015-05-18 11:36:39 +00:00
|
|
|
} else {
|
2015-05-18 21:49:47 +00:00
|
|
|
_unit = attachedTo _logic;
|
2015-05-18 11:36:39 +00:00
|
|
|
|
2015-05-18 21:49:47 +00:00
|
|
|
if (isNull _unit) then {
|
2015-05-18 22:06:21 +00:00
|
|
|
["STR_ACE_Zeus_NothingSelected"] call EFUNC(common,displayTextStructured);
|
2015-05-18 21:49:47 +00:00
|
|
|
} else {
|
|
|
|
if !(_unit isKindOf "CAManBase") then {
|
2015-05-18 22:06:21 +00:00
|
|
|
["STR_ACE_Zeus_OnlyInfantry"] call EFUNC(common,displayTextStructured);
|
2015-05-18 21:49:47 +00:00
|
|
|
} else {
|
|
|
|
if !(alive _unit) then {
|
2015-05-18 22:06:21 +00:00
|
|
|
["STR_ACE_Zeus_OnlyAlive"] call EFUNC(common,displayTextStructured);
|
2015-05-18 21:49:47 +00:00
|
|
|
} else {
|
|
|
|
_conscious = GETVAR(_unit,ACE_isUnconscious,false);
|
|
|
|
// Function handles locality for me
|
|
|
|
[_unit, !_conscious, round(random(10)+5), true] call EFUNC(medical,setUnconscious);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-05-14 22:04:58 +00:00
|
|
|
};
|
|
|
|
|
2015-05-18 11:36:39 +00:00
|
|
|
deleteVehicle _logic;
|