mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e6683e8077
* Add slider settings * WARNING to INFO * tweak scopes / adv fatigue
75 lines
2.6 KiB
C++
75 lines
2.6 KiB
C++
class ACE_Settings {
|
|
class GVAR(BFT_Interval) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 1.0;
|
|
typeName = "SCALAR";
|
|
displayName = CSTRING(BFT_Interval_DisplayName);
|
|
description = CSTRING(BFT_Interval_Description);
|
|
sliderSettings[] = {0, 30, 1, 1};
|
|
};
|
|
class GVAR(BFT_Enabled) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(BFT_Enabled_DisplayName);
|
|
description = CSTRING(BFT_Enabled_Description);
|
|
};
|
|
class GVAR(BFT_HideAiGroups) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(BFT_HideAiGroups_DisplayName);
|
|
description = CSTRING(BFT_HideAiGroups_Description);
|
|
};
|
|
class GVAR(BFT_ShowPlayerNames) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(BFT_ShowPlayerNames_DisplayName);
|
|
description = CSTRING(BFT_ShowPlayerNames_Description);
|
|
};
|
|
class GVAR(mapIllumination) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(MapIllumination_DisplayName);
|
|
description = CSTRING(MapIllumination_Description);
|
|
};
|
|
class GVAR(mapGlow) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(MapGlow_DisplayName);
|
|
description = CSTRING(MapGlow_Description);
|
|
};
|
|
class GVAR(mapShake) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(MapShake_DisplayName);
|
|
description = CSTRING(MapShake_Description);
|
|
};
|
|
class GVAR(mapLimitZoom) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(MapLimitZoom_DisplayName);
|
|
description = CSTRING(MapLimitZoom_Description);
|
|
};
|
|
class GVAR(mapShowCursorCoordinates) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(MapShowCursorCoordinates_DisplayName);
|
|
description = CSTRING(MapShowCursorCoordinates_Description);
|
|
};
|
|
class GVAR(defaultChannel) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = -1;
|
|
typeName = "SCALAR";
|
|
displayName = CSTRING(DefaultChannel_DisplayName);
|
|
description = CSTRING(DefaultChannel_Description);
|
|
sliderSettings[] = {-1, 5, -1, -1};
|
|
};
|
|
};
|