mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d6507cf119
* Medical - epiBoostsSpontaneousWakeUp * Update initSettings.sqf * Move setting, add strings * Update initSettings.sqf * Update addons/medical/stringtable.xml Co-Authored-By: mharis001 <34453221+mharis001@users.noreply.github.com>
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
[
|
|
QGVAR(limping),
|
|
"LIST",
|
|
[LSTRING(Limping_DisplayName), LSTRING(Limping_Description)],
|
|
LSTRING(Category),
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), LSTRING(Limping_LimpOnOpenWounds), LSTRING(Limping_LimpRequiresStitching)], 1],
|
|
true,
|
|
{[QGVAR(limping), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(fractures),
|
|
"LIST",
|
|
[LSTRING(Fractures_DisplayName), LSTRING(Fractures_Description)],
|
|
LSTRING(Category),
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), LSTRING(Fractures_SplintHealsFully), LSTRING(Fractures_SplintHasEffects)], 1],
|
|
true,
|
|
{[QGVAR(fractures), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(spontaneousWakeUpChance),
|
|
"SLIDER",
|
|
[LSTRING(SpontaneousWakeUpChance_DisplayName), LSTRING(SpontaneousWakeUpChance_Description)],
|
|
LSTRING(Category),
|
|
[0, 1, 0.05, 2],
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(spontaneousWakeUpEpinephrineBoost),
|
|
"SLIDER",
|
|
[LSTRING(spontaneousWakeUpEpinephrineBoost_DisplayName), LSTRING(spontaneousWakeUpEpinephrineBoost_Description)],
|
|
LSTRING(Category),
|
|
[1, 30, 1, 1],
|
|
true
|
|
] call CBA_settings_fnc_init;
|