mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix spelling of "isClientSetable"
This commit is contained in:
parent
511ca860e0
commit
ebcdafe610
@ -69,9 +69,9 @@ class ACE_Settings {
|
|||||||
* force = 0;
|
* force = 0;
|
||||||
*
|
*
|
||||||
* Does it appear on the options menu?
|
* Does it appear on the options menu?
|
||||||
* isClientSetable = 1;
|
* isClientSettable = 1;
|
||||||
*
|
*
|
||||||
* The following settings only apply when isClientSetable == 1
|
* The following settings only apply when isClientSettable == 1
|
||||||
* Stringtable entry with the setting name
|
* Stringtable entry with the setting name
|
||||||
* displayName = "$STR_ACE_Common_SettingName";
|
* displayName = "$STR_ACE_Common_SettingName";
|
||||||
*
|
*
|
||||||
@ -90,14 +90,14 @@ class ACE_Settings {
|
|||||||
/*class GVAR(enableNumberHotkeys) {
|
/*class GVAR(enableNumberHotkeys) {
|
||||||
value = 1;
|
value = 1;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Common_EnableNumberHotkeys";
|
displayName = "$STR_ACE_Common_EnableNumberHotkeys";
|
||||||
};*/
|
};*/
|
||||||
class GVAR(settingFeedbackIcons) {
|
class GVAR(settingFeedbackIcons) {
|
||||||
value = 1;
|
value = 1;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
force = 0;
|
force = 0;
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Common_SettingFeedbackIconsName";
|
displayName = "$STR_ACE_Common_SettingFeedbackIconsName";
|
||||||
description = "$STR_ACE_Common_SettingFeedbackIconsDesc";
|
description = "$STR_ACE_Common_SettingFeedbackIconsDesc";
|
||||||
values[] = {"Hide", "Top right, downwards", "Top right, to the left", "Top left, downwards", "Top left, to the right"};
|
values[] = {"Hide", "Top right, downwards", "Top right, to the left", "Top left, downwards", "Top left, to the right"};
|
||||||
@ -106,7 +106,7 @@ class ACE_Settings {
|
|||||||
value = 0;
|
value = 0;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
force = 0;
|
force = 0;
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Common_SettingProgressbarLocationName";
|
displayName = "$STR_ACE_Common_SettingProgressbarLocationName";
|
||||||
description = "$STR_ACE_Common_SettingProgressbarLocationDesc";
|
description = "$STR_ACE_Common_SettingProgressbarLocationDesc";
|
||||||
values[] = {"Top", "Bottom"};
|
values[] = {"Top", "Bottom"};
|
||||||
@ -114,14 +114,14 @@ class ACE_Settings {
|
|||||||
class GVAR(displayTextColor) {
|
class GVAR(displayTextColor) {
|
||||||
value[] = {0,0,0,0.1};
|
value[] = {0,0,0,0.1};
|
||||||
typeName = "COLOR";
|
typeName = "COLOR";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Common_SettingDisplayTextColorName";
|
displayName = "$STR_ACE_Common_SettingDisplayTextColorName";
|
||||||
description = "$STR_ACE_Common_SettingDisplayTextColorDesc";
|
description = "$STR_ACE_Common_SettingDisplayTextColorDesc";
|
||||||
};
|
};
|
||||||
class GVAR(displayTextFontColor) {
|
class GVAR(displayTextFontColor) {
|
||||||
value[] = {1,1,1,1};
|
value[] = {1,1,1,1};
|
||||||
typeName = "COLOR";
|
typeName = "COLOR";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Common_SettingDisplayTextFontColorName";
|
displayName = "$STR_ACE_Common_SettingDisplayTextFontColorName";
|
||||||
description = "$STR_ACE_Common_SettingDisplayTextFontColorDesc";
|
description = "$STR_ACE_Common_SettingDisplayTextFontColorDesc";
|
||||||
};
|
};
|
||||||
|
@ -58,7 +58,7 @@ if (isNil _name) then {
|
|||||||
/*_settingData = [
|
/*_settingData = [
|
||||||
_name,
|
_name,
|
||||||
_typeName,
|
_typeName,
|
||||||
_isClientSetable,
|
_isClientSettable,
|
||||||
_localizedName,
|
_localizedName,
|
||||||
_localizedDescription,
|
_localizedDescription,
|
||||||
_possibleValues,
|
_possibleValues,
|
||||||
@ -68,7 +68,7 @@ if (isNil _name) then {
|
|||||||
_settingData = [
|
_settingData = [
|
||||||
_name,
|
_name,
|
||||||
_typeName,
|
_typeName,
|
||||||
(getNumber (_optionEntry >> "isClientSetable")) > 0,
|
(getNumber (_optionEntry >> "isClientSettable")) > 0,
|
||||||
getText (_optionEntry >> "displayName"),
|
getText (_optionEntry >> "displayName"),
|
||||||
getText (_optionEntry >> "description"),
|
getText (_optionEntry >> "description"),
|
||||||
getArray (_optionEntry >> "values"),
|
getArray (_optionEntry >> "values"),
|
||||||
|
@ -247,7 +247,7 @@ class ACE_Settings {
|
|||||||
class GVAR(showInThirdPerson) {
|
class GVAR(showInThirdPerson) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Goggles_ShowInThirdPerson";
|
displayName = "$STR_ACE_Goggles_ShowInThirdPerson";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -38,7 +38,7 @@ class ACE_Settings {
|
|||||||
class GVAR(DisableEarRinging) {
|
class GVAR(DisableEarRinging) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Hearing_DisableEarRinging";
|
displayName = "$STR_ACE_Hearing_DisableEarRinging";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -20,7 +20,7 @@ class ACE_Settings {
|
|||||||
class GVAR(AlwaysUseCursorSelfInteraction) {
|
class GVAR(AlwaysUseCursorSelfInteraction) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Interact_Menu_AlwaysUseCursorSelfInteraction";
|
displayName = "$STR_ACE_Interact_Menu_AlwaysUseCursorSelfInteraction";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -18,7 +18,7 @@ class ACE_Settings {
|
|||||||
class GVAR(inventoryDisplaySize) {
|
class GVAR(inventoryDisplaySize) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Inventory_SettingName";
|
displayName = "$STR_ACE_Inventory_SettingName";
|
||||||
description = "$STR_ACE_Inventory_SettingDescription";
|
description = "$STR_ACE_Inventory_SettingDescription";
|
||||||
values[] = {"Normal (Default Size)", "Medium", "Bigger"};
|
values[] = {"Normal (Default Size)", "Medium", "Bigger"};
|
||||||
|
@ -21,6 +21,6 @@ class ACE_Settings {
|
|||||||
class GVAR(MapDataAvailable) {
|
class GVAR(MapDataAvailable) {
|
||||||
value = 2;
|
value = 2;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
isClientSetable = 0;
|
isClientSettable = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -21,7 +21,7 @@ class ACE_Settings {
|
|||||||
class GVAR(useImperial) {
|
class GVAR(useImperial) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_Movement_UseImperial";
|
displayName = "$STR_ACE_Movement_UseImperial";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -19,55 +19,55 @@ class ACE_Settings {
|
|||||||
class GVAR(defaultNametagColor) {
|
class GVAR(defaultNametagColor) {
|
||||||
value[] = {0.77, 0.51, 0.08, 1};
|
value[] = {0.77, 0.51, 0.08, 1};
|
||||||
typeName = "COLOR";
|
typeName = "COLOR";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_NameTags_DefaultNametagColor";
|
displayName = "$STR_ACE_NameTags_DefaultNametagColor";
|
||||||
};
|
};
|
||||||
class GVAR(showPlayerNames) {
|
class GVAR(showPlayerNames) {
|
||||||
value = 1;
|
value = 1;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_NameTags_ShowPlayerNames";
|
displayName = "$STR_ACE_NameTags_ShowPlayerNames";
|
||||||
values[] = {"Disabled", "Enabled", "Only Cursor", "Only On Keypress", "Only Cursor and KeyPress"};
|
values[] = {"Disabled", "Enabled", "Only Cursor", "Only On Keypress", "Only Cursor and KeyPress"};
|
||||||
};
|
};
|
||||||
class GVAR(showPlayerRanks) {
|
class GVAR(showPlayerRanks) {
|
||||||
value = 1;
|
value = 1;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_NameTags_ShowPlayerRanks";
|
displayName = "$STR_ACE_NameTags_ShowPlayerRanks";
|
||||||
};
|
};
|
||||||
class GVAR(showVehicleCrewInfo) {
|
class GVAR(showVehicleCrewInfo) {
|
||||||
value = 1;
|
value = 1;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_NameTags_ShowVehicleCrewInfo";
|
displayName = "$STR_ACE_NameTags_ShowVehicleCrewInfo";
|
||||||
};
|
};
|
||||||
class GVAR(showNamesForAI) {
|
class GVAR(showNamesForAI) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_NameTags_ShowNamesForAI";
|
displayName = "$STR_ACE_NameTags_ShowNamesForAI";
|
||||||
};
|
};
|
||||||
class GVAR(showCursorTagForVehicles) {
|
class GVAR(showCursorTagForVehicles) {
|
||||||
value = 0;
|
value = 0;
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 0;
|
isClientSettable = 0;
|
||||||
};
|
};
|
||||||
class GVAR(showSoundWaves) {
|
class GVAR(showSoundWaves) {
|
||||||
value = 1;
|
value = 1;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
displayName = "$STR_ACE_NameTags_ShowSoundWaves";
|
displayName = "$STR_ACE_NameTags_ShowSoundWaves";
|
||||||
values[] = {"Disabled", "Use Nametag settings", "Always Show All"};
|
values[] = {"Disabled", "Use Nametag settings", "Always Show All"};
|
||||||
};
|
};
|
||||||
class GVAR(PlayerNamesViewDistance) {
|
class GVAR(PlayerNamesViewDistance) {
|
||||||
value = 5;
|
value = 5;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
isClientSetable = 0;
|
isClientSettable = 0;
|
||||||
};
|
};
|
||||||
class GVAR(PlayerNamesMaxAlpha) {
|
class GVAR(PlayerNamesMaxAlpha) {
|
||||||
value = 0.8;
|
value = 0.8;
|
||||||
typeName = "SCALAR";
|
typeName = "SCALAR";
|
||||||
isClientSetable = 0;
|
isClientSettable = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ class CfgPatches {
|
|||||||
class ACE_Settings {
|
class ACE_Settings {
|
||||||
class GVAR(DisplayTextOnJam) {
|
class GVAR(DisplayTextOnJam) {
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
value = 1;
|
value = 1;
|
||||||
displayName = "$STR_ACE_overheating_SettingDisplayTextName";
|
displayName = "$STR_ACE_overheating_SettingDisplayTextName";
|
||||||
description = "$STR_ACE_overheating_SettingDisplayTextDesc";
|
description = "$STR_ACE_overheating_SettingDisplayTextDesc";
|
||||||
|
@ -25,7 +25,7 @@ class CfgPatches {
|
|||||||
class ACE_Settings {
|
class ACE_Settings {
|
||||||
class GVAR(DisplayText) {
|
class GVAR(DisplayText) {
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
value = 1;
|
value = 1;
|
||||||
displayName = "$STR_ACE_reload_SettingDisplayTextName";
|
displayName = "$STR_ACE_reload_SettingDisplayTextName";
|
||||||
description = "$STR_ACE_reload_SettingDisplayTextDesc";
|
description = "$STR_ACE_reload_SettingDisplayTextDesc";
|
||||||
|
@ -17,7 +17,7 @@ class CfgPatches {
|
|||||||
class ACE_Settings {
|
class ACE_Settings {
|
||||||
class GVAR(DisplayText) {
|
class GVAR(DisplayText) {
|
||||||
typeName = "BOOL";
|
typeName = "BOOL";
|
||||||
isClientSetable = 1;
|
isClientSettable = 1;
|
||||||
value = 1;
|
value = 1;
|
||||||
displayName = "$STR_ACE_Weaponselect_SettingDisplayTextName";
|
displayName = "$STR_ACE_Weaponselect_SettingDisplayTextName";
|
||||||
description = "$STR_ACE_Weaponselect_SettingDisplayTextDesc";
|
description = "$STR_ACE_Weaponselect_SettingDisplayTextDesc";
|
||||||
|
Loading…
Reference in New Issue
Block a user