mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-16 05:34:16 +01:00
Update Config Option enums (#1870)
This commit is contained in:
parent
a06ed61632
commit
b73cac6a4d
2 changed files with 322 additions and 231 deletions
|
|
@ -842,6 +842,62 @@ public enum SystemConfigOption
|
||||||
[GameConfigOption("GlareRepresentation_DX11", ConfigType.UInt)]
|
[GameConfigOption("GlareRepresentation_DX11", ConfigType.UInt)]
|
||||||
GlareRepresentation_DX11,
|
GlareRepresentation_DX11,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name DynamicRezoThreshold.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("DynamicRezoThreshold", ConfigType.UInt)]
|
||||||
|
DynamicRezoThreshold,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name GraphicsRezoScale.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("GraphicsRezoScale", ConfigType.UInt)]
|
||||||
|
GraphicsRezoScale,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name GraphicsRezoUpscaleType.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("GraphicsRezoUpscaleType", ConfigType.UInt)]
|
||||||
|
GraphicsRezoUpscaleType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name GrassEnableDynamicInterference.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("GrassEnableDynamicInterference", ConfigType.UInt)]
|
||||||
|
GrassEnableDynamicInterference,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name ShadowBgLOD.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("ShadowBgLOD", ConfigType.UInt)]
|
||||||
|
ShadowBgLOD,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name TextureRezoType.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("TextureRezoType", ConfigType.UInt)]
|
||||||
|
TextureRezoType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name ShadowLightValidType.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("ShadowLightValidType", ConfigType.UInt)]
|
||||||
|
ShadowLightValidType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name DynamicRezoEnableCutScene.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("DynamicRezoEnableCutScene", ConfigType.UInt)]
|
||||||
|
DynamicRezoEnableCutScene,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name UiSystemEnlarge.
|
/// System option with the internal name UiSystemEnlarge.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
|
||||||
|
|
@ -37,13 +37,6 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("BattleEffectPvPEnemyPc", ConfigType.UInt)]
|
[GameConfigOption("BattleEffectPvPEnemyPc", ConfigType.UInt)]
|
||||||
BattleEffectPvPEnemyPc,
|
BattleEffectPvPEnemyPc,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name PadMode.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("PadMode", ConfigType.UInt)]
|
|
||||||
PadMode,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name WeaponAutoPutAway.
|
/// System option with the internal name WeaponAutoPutAway.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -121,6 +114,13 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("LockonDefaultZoom", ConfigType.Float)]
|
[GameConfigOption("LockonDefaultZoom", ConfigType.Float)]
|
||||||
LockonDefaultZoom,
|
LockonDefaultZoom,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LockonDefaultZoom_179.
|
||||||
|
/// This option is a Float.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LockonDefaultZoom_179", ConfigType.Float)]
|
||||||
|
LockonDefaultZoom_179,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name CameraProductionOfAction.
|
/// System option with the internal name CameraProductionOfAction.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -401,6 +401,20 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("IfritSize", ConfigType.UInt)]
|
[GameConfigOption("IfritSize", ConfigType.UInt)]
|
||||||
IfritSize,
|
IfritSize,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name SolBahamutSize.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("SolBahamutSize", ConfigType.UInt)]
|
||||||
|
SolBahamutSize,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name PetMirageTypeFairy.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("PetMirageTypeFairy", ConfigType.UInt)]
|
||||||
|
PetMirageTypeFairy,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name TimeMode.
|
/// System option with the internal name TimeMode.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -1087,6 +1101,20 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("HotbarWXHBInputOnce", ConfigType.UInt)]
|
[GameConfigOption("HotbarWXHBInputOnce", ConfigType.UInt)]
|
||||||
HotbarWXHBInputOnce,
|
HotbarWXHBInputOnce,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name ExHotbarChangeHotbar1IsFashion.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("ExHotbarChangeHotbar1IsFashion", ConfigType.UInt)]
|
||||||
|
ExHotbarChangeHotbar1IsFashion,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name HotbarCrossUseExDirectionAutoSwitch.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("HotbarCrossUseExDirectionAutoSwitch", ConfigType.UInt)]
|
||||||
|
HotbarCrossUseExDirectionAutoSwitch,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name IdlingCameraSwitchType.
|
/// System option with the internal name IdlingCameraSwitchType.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -1094,6 +1122,13 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("IdlingCameraSwitchType", ConfigType.UInt)]
|
[GameConfigOption("IdlingCameraSwitchType", ConfigType.UInt)]
|
||||||
IdlingCameraSwitchType,
|
IdlingCameraSwitchType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name HotbarXHBEditEnable.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("HotbarXHBEditEnable", ConfigType.UInt)]
|
||||||
|
HotbarXHBEditEnable,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name PlateType.
|
/// System option with the internal name PlateType.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -1843,6 +1878,118 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("NamePlateDispSize", ConfigType.UInt)]
|
[GameConfigOption("NamePlateDispSize", ConfigType.UInt)]
|
||||||
NamePlateDispSize,
|
NamePlateDispSize,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispJobIcon.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispJobIcon", ConfigType.UInt)]
|
||||||
|
NamePlateDispJobIcon,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispJobIconType.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispJobIconType", ConfigType.UInt)]
|
||||||
|
NamePlateDispJobIconType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateSetRoleColor.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateSetRoleColor", ConfigType.UInt)]
|
||||||
|
NamePlateSetRoleColor,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateColorTank.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateColorTank", ConfigType.UInt)]
|
||||||
|
NamePlateColorTank,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateEdgeTank.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateEdgeTank", ConfigType.UInt)]
|
||||||
|
NamePlateEdgeTank,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateColorHealer.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateColorHealer", ConfigType.UInt)]
|
||||||
|
NamePlateColorHealer,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateEdgeHealer.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateEdgeHealer", ConfigType.UInt)]
|
||||||
|
NamePlateEdgeHealer,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateColorDps.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateColorDps", ConfigType.UInt)]
|
||||||
|
NamePlateColorDps,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateEdgeDps.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateEdgeDps", ConfigType.UInt)]
|
||||||
|
NamePlateEdgeDps,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateColorOtherClass.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateColorOtherClass", ConfigType.UInt)]
|
||||||
|
NamePlateColorOtherClass,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateEdgeOtherClass.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateEdgeOtherClass", ConfigType.UInt)]
|
||||||
|
NamePlateEdgeOtherClass,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispWorldTravel.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispWorldTravel", ConfigType.UInt)]
|
||||||
|
NamePlateDispWorldTravel,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispJobIconInPublicParty.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispJobIconInPublicParty", ConfigType.UInt)]
|
||||||
|
NamePlateDispJobIconInPublicParty,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispJobIconInPublicOther.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispJobIconInPublicOther", ConfigType.UInt)]
|
||||||
|
NamePlateDispJobIconInPublicOther,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispJobIconInInstanceParty.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispJobIconInInstanceParty", ConfigType.UInt)]
|
||||||
|
NamePlateDispJobIconInInstanceParty,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name NamePlateDispJobIconInInstanceOther.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("NamePlateDispJobIconInInstanceOther", ConfigType.UInt)]
|
||||||
|
NamePlateDispJobIconInInstanceOther,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name ActiveInfo.
|
/// System option with the internal name ActiveInfo.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -2452,6 +2599,55 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("LogDragResize", ConfigType.UInt)]
|
[GameConfigOption("LogDragResize", ConfigType.UInt)]
|
||||||
LogDragResize,
|
LogDragResize,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogNameIconType.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogNameIconType", ConfigType.UInt)]
|
||||||
|
LogNameIconType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogDispClassJobName.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogDispClassJobName", ConfigType.UInt)]
|
||||||
|
LogDispClassJobName,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogSetRoleColor.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogSetRoleColor", ConfigType.UInt)]
|
||||||
|
LogSetRoleColor,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogColorRoleTank.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogColorRoleTank", ConfigType.UInt)]
|
||||||
|
LogColorRoleTank,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogColorRoleHealer.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogColorRoleHealer", ConfigType.UInt)]
|
||||||
|
LogColorRoleHealer,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogColorRoleDPS.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogColorRoleDPS", ConfigType.UInt)]
|
||||||
|
LogColorRoleDPS,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name LogColorOtherClass.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("LogColorOtherClass", ConfigType.UInt)]
|
||||||
|
LogColorOtherClass,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name ChatType.
|
/// System option with the internal name ChatType.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -2872,6 +3068,13 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("ItemNoArmoryMaskOff", ConfigType.UInt)]
|
[GameConfigOption("ItemNoArmoryMaskOff", ConfigType.UInt)]
|
||||||
ItemNoArmoryMaskOff,
|
ItemNoArmoryMaskOff,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name ItemInventryStoreEnd.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("ItemInventryStoreEnd", ConfigType.UInt)]
|
||||||
|
ItemInventryStoreEnd,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name InfoSettingDispWorldNameType.
|
/// System option with the internal name InfoSettingDispWorldNameType.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -3145,6 +3348,27 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("BannerContentsOrderType", ConfigType.UInt)]
|
[GameConfigOption("BannerContentsOrderType", ConfigType.UInt)]
|
||||||
BannerContentsOrderType,
|
BannerContentsOrderType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name CCProgressAllyFixLeftSide.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("CCProgressAllyFixLeftSide", ConfigType.UInt)]
|
||||||
|
CCProgressAllyFixLeftSide,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name CCMapAllyFixLeftSide.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("CCMapAllyFixLeftSide", ConfigType.UInt)]
|
||||||
|
CCMapAllyFixLeftSide,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name DispCCCountDown.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("DispCCCountDown", ConfigType.UInt)]
|
||||||
|
DispCCCountDown,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name EmoteTextType.
|
/// System option with the internal name EmoteTextType.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
|
|
@ -3306,234 +3530,45 @@ public enum UiConfigOption
|
||||||
[GameConfigOption("TelepoTicketGilSetting", ConfigType.UInt)]
|
[GameConfigOption("TelepoTicketGilSetting", ConfigType.UInt)]
|
||||||
TelepoTicketGilSetting,
|
TelepoTicketGilSetting,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name PvPFrontlinesGCFree.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("PvPFrontlinesGCFree", ConfigType.UInt)]
|
|
||||||
PvPFrontlinesGCFree,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name PetMirageTypeFairy.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("PetMirageTypeFairy", ConfigType.UInt)]
|
|
||||||
PetMirageTypeFairy,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name ExHotbarChangeHotbar1IsFashion.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("ExHotbarChangeHotbar1IsFashion", ConfigType.UInt)]
|
|
||||||
ExHotbarChangeHotbar1IsFashion,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name HotbarCrossUseExDirectionAutoSwitch.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("HotbarCrossUseExDirectionAutoSwitch", ConfigType.UInt)]
|
|
||||||
HotbarCrossUseExDirectionAutoSwitch,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispJobIcon.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispJobIcon", ConfigType.UInt)]
|
|
||||||
NamePlateDispJobIcon,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispJobIconType.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispJobIconType", ConfigType.UInt)]
|
|
||||||
NamePlateDispJobIconType,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateSetRoleColor.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateSetRoleColor", ConfigType.UInt)]
|
|
||||||
NamePlateSetRoleColor,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateColorTank.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateColorTank", ConfigType.UInt)]
|
|
||||||
NamePlateColorTank,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateEdgeTank.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateEdgeTank", ConfigType.UInt)]
|
|
||||||
NamePlateEdgeTank,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateColorHealer.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateColorHealer", ConfigType.UInt)]
|
|
||||||
NamePlateColorHealer,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateEdgeHealer.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateEdgeHealer", ConfigType.UInt)]
|
|
||||||
NamePlateEdgeHealer,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateColorDps.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateColorDps", ConfigType.UInt)]
|
|
||||||
NamePlateColorDps,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateEdgeDps.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateEdgeDps", ConfigType.UInt)]
|
|
||||||
NamePlateEdgeDps,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateColorOtherClass.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateColorOtherClass", ConfigType.UInt)]
|
|
||||||
NamePlateColorOtherClass,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateEdgeOtherClass.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateEdgeOtherClass", ConfigType.UInt)]
|
|
||||||
NamePlateEdgeOtherClass,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispWorldTravel.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispWorldTravel", ConfigType.UInt)]
|
|
||||||
NamePlateDispWorldTravel,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogNameIconType.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogNameIconType", ConfigType.UInt)]
|
|
||||||
LogNameIconType,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogDispClassJobName.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogDispClassJobName", ConfigType.UInt)]
|
|
||||||
LogDispClassJobName,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogSetRoleColor.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogSetRoleColor", ConfigType.UInt)]
|
|
||||||
LogSetRoleColor,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogColorRoleTank.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogColorRoleTank", ConfigType.UInt)]
|
|
||||||
LogColorRoleTank,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogColorRoleHealer.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogColorRoleHealer", ConfigType.UInt)]
|
|
||||||
LogColorRoleHealer,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogColorRoleDPS.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogColorRoleDPS", ConfigType.UInt)]
|
|
||||||
LogColorRoleDPS,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name LogColorOtherClass.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("LogColorOtherClass", ConfigType.UInt)]
|
|
||||||
LogColorOtherClass,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name ItemInventryStoreEnd.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("ItemInventryStoreEnd", ConfigType.UInt)]
|
|
||||||
ItemInventryStoreEnd,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name HotbarXHBEditEnable.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("HotbarXHBEditEnable", ConfigType.UInt)]
|
|
||||||
HotbarXHBEditEnable,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispJobIconInPublicParty.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispJobIconInPublicParty", ConfigType.UInt)]
|
|
||||||
NamePlateDispJobIconInPublicParty,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispJobIconInPublicOther.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispJobIconInPublicOther", ConfigType.UInt)]
|
|
||||||
NamePlateDispJobIconInPublicOther,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispJobIconInInstanceParty.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispJobIconInInstanceParty", ConfigType.UInt)]
|
|
||||||
NamePlateDispJobIconInInstanceParty,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name NamePlateDispJobIconInInstanceOther.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("NamePlateDispJobIconInInstanceOther", ConfigType.UInt)]
|
|
||||||
NamePlateDispJobIconInInstanceOther,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name CCProgressAllyFixLeftSide.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("CCProgressAllyFixLeftSide", ConfigType.UInt)]
|
|
||||||
CCProgressAllyFixLeftSide,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name CCMapAllyFixLeftSide.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("CCMapAllyFixLeftSide", ConfigType.UInt)]
|
|
||||||
CCMapAllyFixLeftSide,
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// System option with the internal name DispCCCountDown.
|
|
||||||
/// This option is a UInt.
|
|
||||||
/// </summary>
|
|
||||||
[GameConfigOption("DispCCCountDown", ConfigType.UInt)]
|
|
||||||
DispCCCountDown,
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// System option with the internal name TelepoCategoryType.
|
/// System option with the internal name TelepoCategoryType.
|
||||||
/// This option is a UInt.
|
/// This option is a UInt.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[GameConfigOption("TelepoCategoryType", ConfigType.UInt)]
|
[GameConfigOption("TelepoCategoryType", ConfigType.UInt)]
|
||||||
TelepoCategoryType,
|
TelepoCategoryType,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name HidePcAroundQuestProgressNpc.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("HidePcAroundQuestProgressNpc", ConfigType.UInt)]
|
||||||
|
HidePcAroundQuestProgressNpc,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name HidePcAroundQuestProgressNpcIncludeParty.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("HidePcAroundQuestProgressNpcIncludeParty", ConfigType.UInt)]
|
||||||
|
HidePcAroundQuestProgressNpcIncludeParty,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name HidePcAroundNpcAccessingQuest.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("HidePcAroundNpcAccessingQuest", ConfigType.UInt)]
|
||||||
|
HidePcAroundNpcAccessingQuest,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name HidePcAroundNpcAccessingQuestIncludeParty.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("HidePcAroundNpcAccessingQuestIncludeParty", ConfigType.UInt)]
|
||||||
|
HidePcAroundNpcAccessingQuestIncludeParty,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// System option with the internal name PvPFrontlinesGCFree.
|
||||||
|
/// This option is a UInt.
|
||||||
|
/// </summary>
|
||||||
|
[GameConfigOption("PvPFrontlinesGCFree", ConfigType.UInt)]
|
||||||
|
PvPFrontlinesGCFree,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue