2016-09-04 09:25:03 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_START;
|
2016-09-04 09:25:03 +00:00
|
|
|
#include "XEH_PREP.hpp"
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_END;
|
2016-09-04 09:25:03 +00:00
|
|
|
|
2023-12-07 03:20:47 +00:00
|
|
|
#include "initSettings.inc.sqf"
|
2018-08-06 16:08:43 +00:00
|
|
|
|
2020-10-29 16:38:24 +00:00
|
|
|
// default time values for AI being ready to heal, used in fnc_isSafe
|
|
|
|
if (isNil QGVAR(timeSafe_shoot)) then { GVAR(timeSafe_shoot) = 30; };
|
|
|
|
if (isNil QGVAR(timeSafe_hit)) then { GVAR(timeSafe_hit) = 30; };
|
2023-06-23 21:59:11 +00:00
|
|
|
if (isNil QGVAR(timeSafe_suppressed)) then { GVAR(timeSafe_suppressed) = 30; };
|
2020-10-29 16:38:24 +00:00
|
|
|
|
2023-09-06 16:37:26 +00:00
|
|
|
GVAR(itemHash) = uinamespace getVariable QGVAR(itemHash);
|
|
|
|
|
2016-09-04 09:25:03 +00:00
|
|
|
ADDON = true;
|