2016-09-04 19:33:07 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_START;
|
2016-09-04 19:33:07 +00:00
|
|
|
#include "XEH_PREP.hpp"
|
2016-11-23 19:35:25 +00:00
|
|
|
PREP_RECOMPILE_END;
|
2018-05-30 23:05:55 +00:00
|
|
|
|
2023-12-07 03:20:47 +00:00
|
|
|
#include "initSettings.inc.sqf"
|
2016-09-04 19:33:07 +00:00
|
|
|
|
|
|
|
GVAR(staminaBarWidth) = 10 * (((safezoneW / safezoneH) min 1.2) / 40);
|
2022-03-09 03:41:56 +00:00
|
|
|
GVAR(dutyList) = createHashMap;
|
2019-06-03 15:31:46 +00:00
|
|
|
GVAR(setAnimExclusions) = [];
|
2023-06-27 16:40:07 +00:00
|
|
|
GVAR(inertia) = 0;
|
|
|
|
GVAR(inertiaCache) = createHashMap;
|
2024-02-07 20:50:18 +00:00
|
|
|
GVAR(medicalLoaded) = ["ace_medical"] call EFUNC(common,isModLoaded);
|
2016-09-04 19:33:07 +00:00
|
|
|
|
|
|
|
ADDON = true;
|