2018-07-29 22:07:30 +00:00
|
|
|
// #define DEBUG_MODE_FULL
|
2016-07-02 14:34:28 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2019-04-16 21:47:13 +00:00
|
|
|
[QEGVAR(medical,setUnconscious), LINKFUNC(setUnconscious)] call CBA_fnc_addEventHandler;
|
|
|
|
|
2016-10-06 22:09:58 +00:00
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
2023-09-02 22:09:19 +00:00
|
|
|
// Fractures affect base sway, pain makes it worse
|
|
|
|
["baseline", {
|
|
|
|
ACE_player getVariable [QEGVAR(medical_engine,aimFracture), 0]
|
|
|
|
}, QUOTE(ADDON)] call EFUNC(common,addSwayFactor);
|
|
|
|
|
|
|
|
// Max pain = 5x sway
|
|
|
|
["multiplier", {
|
|
|
|
1 + (GET_PAIN_PERCEIVED(ACE_player) * 4)
|
|
|
|
}, QUOTE(ADDON)] call EFUNC(common,addSwayFactor);
|
2016-11-07 21:19:55 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_MODE_FULL
|
2020-04-22 15:05:22 +00:00
|
|
|
call compile preprocessFileLineNumbers QPATHTOF(dev\reportSettings.sqf);
|
2019-03-24 00:55:04 +00:00
|
|
|
call compile preprocessFileLineNumbers QPATHTOF(dev\watchVariable.sqf);
|
|
|
|
call compile preprocessFileLineNumbers QPATHTOF(dev\debugDisplay.sqf);
|
2016-11-07 21:19:55 +00:00
|
|
|
#endif
|