ACE3/addons/medical/XEH_preInit.sqf

32 lines
797 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-02-03 19:09:25 +00:00
ADDON = false;
2016-02-22 14:20:36 +00:00
#include "XEH_PREP.hpp"
GVAR(HITPOINTS) = ["HitHead", "HitBody", "HitLeftArm", "HitRightArm", "HitLeftLeg", "HitRightLeg"];
GVAR(SELECTIONS) = ["head", "body", "hand_l", "hand_r", "leg_l", "leg_r"];
GVAR(STATE_MACHINE) = (configFile >> "ACE_Medical_StateMachine") call FUNC(createStateMachine);
2016-10-13 14:56:57 +00:00
// @todo, ACE_Settings
2016-10-13 07:10:08 +00:00
[
QGVAR(basicBandages),
"CHECKBOX",
["Basic Bandages", "All Bandages share the same effectiveness and reopening chances."], //@todo
"ACE Medical", // @todo
true,
true
] call CBA_Settings_fnc_init;
2016-10-12 20:38:58 +00:00
[
QGVAR(basicIVBags),
"CHECKBOX",
["Basic IV Bags", "IV Bags fill up lost blood instantly"], //@todo
"ACE Medical", // @todo
true,
true
] call CBA_Settings_fnc_init;
ADDON = true;