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>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Return Value:
|
2016-07-07 09:46:55 +00:00
|
|
|
* None
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* 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 {
|
2018-05-22 16:21:24 +00:00
|
|
|
if (IS_UNCONSCIOUS(_unit) && {count (_unit getVariable [QGVAR(unconsciousArguments), []]) >= 6}) then {
|
2016-09-04 14:44:22 +00:00
|
|
|
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];
|
|
|
|
};
|
|
|
|
};
|