ACE3/addons/medical/functions/fnc_handleLocal.sqf

30 lines
661 B
Plaintext
Raw Normal View History

2016-07-07 09:46:55 +00:00
/*
* Author: Glowbal
* Called when a unit switched locality
*
* Arguments:
* 0: The Unit <OBJECT>
* 1: Is local <BOOL>
*
* Return Value:
2016-07-07 09:46:55 +00:00
* None
*
* Example:
* [bob, true] call ACE_medical_fnc_handleLocal
*
2016-07-07 09:46:55 +00:00
* Public: No
*/
#include "script_component.hpp"
params ["_unit", "_local"];
if (_local) then {
if ((_unit getVariable ["ACE_isUnconscious",false]) && {count (_unit getVariable [QGVAR(unconsciousArguments), []]) >= 6}) then {
private _arguments = (_unit getVariable [QGVAR(unconsciousArguments), []]);
2016-07-07 09:46:55 +00:00
_arguments set [2, CBA_missionTime];
_unit setVariable [QGVAR(unconsciousArguments), nil, true];
};
};