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);
|
|
|
|
private ["_activated","_unit","_logic","_conscious"];
|
|
|
|
|
|
|
|
if (!_activated) exitWith {};
|
|
|
|
|
|
|
|
if (isNil QEFUNC(medical,setUnconscious)) then {
|
|
|
|
["Requires ACE_Medical"] call DEFUNC(common,displayTextStructured);
|
|
|
|
} else {
|
|
|
|
_unit = attachedTo _logic;
|
|
|
|
|
|
|
|
if (isNull _unit) then {
|
|
|
|
["Place on a unit"] call DEFUNC(common,displayTextStructured);
|
|
|
|
} else {
|
|
|
|
if (!_unit isKindOf "CAManBase") then {
|
|
|
|
["Unit must be infantry"] call DEFUNC(common,displayTextStructured);
|
|
|
|
} else {
|
|
|
|
if (!alive _unit) then {
|
|
|
|
["Unit must be alive"] call DEFUNC(common,displayTextStructured);
|
|
|
|
} else {
|
|
|
|
_conscious = GETVAR(_unit,ACE_isUnconscious,false);
|
|
|
|
// Function handles locality for me
|
2015-05-18 11:54:28 +00:00
|
|
|
[_unit, !_conscious, round(random(10)+5), true] call DEFUNC(medical,setUnconscious);
|
2015-05-18 11:36:39 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-05-14 22:04:58 +00:00
|
|
|
};
|
|
|
|
|
2015-05-18 11:36:39 +00:00
|
|
|
deleteVehicle _logic;
|