2016-06-30 15:33:29 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
|
|
|
#include "XEH_PREP.hpp"
|
|
|
|
|
2016-12-01 19:54:03 +00:00
|
|
|
[
|
|
|
|
QGVAR(painEffectType),
|
|
|
|
"LIST",
|
2017-02-19 04:11:40 +00:00
|
|
|
[localize LSTRING(painEffectType), "Selects the used pain effect type"], //@todo
|
2016-12-01 19:54:03 +00:00
|
|
|
"ACE Medical", // @todo
|
|
|
|
[
|
|
|
|
[0, 1],
|
|
|
|
["White flashing", "Pulsing blur"],
|
|
|
|
0
|
|
|
|
],
|
|
|
|
false,
|
2017-02-19 04:11:40 +00:00
|
|
|
{
|
|
|
|
if (isNil QGVAR(ppPain)) exitWith {TRACE_1("Before Post-Init",_this)};
|
|
|
|
TRACE_1("reseting ppEffect type",_this);
|
|
|
|
[true] call FUNC(initEffects);
|
|
|
|
}
|
2016-12-01 19:54:03 +00:00
|
|
|
] call CBA_Settings_fnc_init;
|
|
|
|
|
2017-01-29 19:24:16 +00:00
|
|
|
GVAR(lastHeartBeatSound) = 0;
|
|
|
|
|
2016-06-30 15:33:29 +00:00
|
|
|
ADDON = true;
|