mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9e5c4a7ed9
* Transfer medical AI to CBA setting * Neuter the old settings module I've left the entry in CfgVehicles so that it doesn't cause errors on older missions, but it's just a dumb logic now and does nothing. * Remove medic setting * Move increaseTraining setting * Move fnc_adjustPainlevel to medical_status * Move pain and bleed coefficients to medical_status * Move advanced bandages to medical_treatment * Move advanced medication to medical_treatment * Move advanced diagnose to medical_treatment * Move wound reopening and screams settings * Move damage threshold settings * Move showPain setting * Move statemachine settings * Move pain visualisation setting * Move all treatment usage settings * Move self IV setting * Move remaining settings * Sort treatment setting string categories
57 lines
2.0 KiB
C++
57 lines
2.0 KiB
C++
class ACE_Settings {
|
|
class GVAR(allow) {
|
|
displayName = CSTRING(allow);
|
|
description = CSTRING(allow_Descr);
|
|
value = 1;
|
|
typeName = "SCALAR";
|
|
values[] = {ECSTRING(common,Disabled), ECSTRING(common,Enabled), ECSTRING(common,VehiclesOnly)};
|
|
category = ECSTRING(medical,Category_Medical);
|
|
};
|
|
class GVAR(useMenu) {
|
|
displayName = CSTRING(useMenu);
|
|
description = CSTRING(useMenu_Descr);
|
|
value = 1;
|
|
typeName = "SCALAR";
|
|
values[] = {ECSTRING(common,Disabled), ECSTRING(common,Enabled), ECSTRING(common,VehiclesOnly)};
|
|
isClientSettable = 1;
|
|
category = ECSTRING(medical,Category_Medical);
|
|
};
|
|
class GVAR(openAfterTreatment) {
|
|
displayName = CSTRING(openAfterTreatment);
|
|
description = CSTRING(openAfterTreatment_Descr);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
category = ECSTRING(medical,Category_Medical);
|
|
};
|
|
class GVAR(maxRange) {
|
|
//for ref: 3d interaction (MEDICAL_ACTION_DISTANCE) is 1.75
|
|
value = 3;
|
|
typeName = "SCALAR";
|
|
category = ECSTRING(medical,Category_Medical);
|
|
sliderSettings[] = {0, 10, 3, 1};
|
|
};
|
|
class EGVAR(medical,menuTypeStyle) {
|
|
category = CSTRING(Category_Medical);
|
|
displayName = CSTRING(menuTypeDisplay);
|
|
description = CSTRING(menuTypeDescription);
|
|
typeName = "SCALAR";
|
|
value = 0;
|
|
values[] = {CSTRING(useSelection), CSTRING(useRadial), "Disabled"};
|
|
isClientSettable = 1;
|
|
};
|
|
class GVAR(painVisualization) {
|
|
displayName = CSTRING(painVisualization_DisplayName);
|
|
description = CSTRING(painVisualization_Description);
|
|
typeName = "SCALAR";
|
|
value = 0;
|
|
values[] = {"Anyone", "Medics only", "Doctors only"};
|
|
};
|
|
class GVAR(showPainInMenu) {
|
|
displayName = CSTRING(showPainInMenu_DisplayName);
|
|
description = CSTRING(showPainInMenu_Description);
|
|
typeName = "BOOL";
|
|
value = 0;
|
|
};
|
|
};
|