mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
779 B
Plaintext
26 lines
779 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
#include "XEH_PREP.hpp"
|
|
|
|
call FUNC(parseConfigForInjuries);
|
|
|
|
// decide which woundsHandler to use by whether the extension is present or not
|
|
if ("ace_medical" callExtension "version" != "") then {
|
|
DFUNC(woundsHandlerActive) = FUNC(woundsHandler);
|
|
} else {
|
|
DFUNC(woundsHandlerActive) = FUNC(woundsHandlerSQF);
|
|
};
|
|
|
|
[QEGVAR(medical_engine,woundReceived), {
|
|
params ["_unit", "_woundedHitPoint", "_receivedDamage", "", "_ammo"];
|
|
|
|
private _typeOfDamage = _ammo call FUNC(getTypeOfDamage);
|
|
[_unit, _woundedHitPoint, _receivedDamage, _ammo, _typeOfDamage] call FUNC(woundsHandlerActive);
|
|
|
|
[_unit, EGVAR(medical,STATE_MACHINE)] call EFUNC(medical,addStateHandler);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
ADDON = true;
|