mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
4eeac9f649
* Medical - Death from sum of trauma * fixes * Update fnc_determineIfFatal.sqf
27 lines
821 B
Plaintext
27 lines
821 B
Plaintext
[
|
|
QEGVAR(medical,fatalDamageSource),
|
|
"LIST",
|
|
[LSTRING(fatalDamageSource_DisplayName), LSTRING(fatalDamageSource_Description)],
|
|
[ELSTRING(medical,Category)],
|
|
[[0, 1, 2], [LSTRING(fatalDamageSource_vitalShotsOnly), LSTRING(fatalDamageSource_trauma), LSTRING(fatalDamageSource_both)], 0],
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QEGVAR(medical,playerDamageThreshold),
|
|
"SLIDER",
|
|
[LSTRING(PlayerDamageThreshold_DisplayName), LSTRING(PlayerDamageThreshold_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 25, 1, 2],
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QEGVAR(medical,AIDamageThreshold),
|
|
"SLIDER",
|
|
[LSTRING(AIDamageThreshold_DisplayName), LSTRING(AIDamageThreshold_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 25, 1, 2],
|
|
true
|
|
] call CBA_settings_fnc_init;
|