forked from Stanzilla/AdvancedInterfaceOptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcvars.dump
1252 lines (1250 loc) · 74.2 KB
/
cvars.dump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local _, T = ...
T.CVars = {
["portal"] = "Name of Battle.net portal to use",
["textLocale"] = "Set the game locale for text",
["audioLocale"] = "Set the game locale for audio content",
["locale"] = "Set the game locale",
["agentUID"] = "The UID provided by Battle.net to be passed to Agent",
["timingTestError"] = "Error reported by the timing validation system",
["timingMethod"] = "Desired method for game timing",
["enableStreaming"] = "Set to 0 to disable all streaming (requires client restart)",
["launchAgent"] = "Set this to have the client start up Agent",
["installLocale"] = "",
["hwDetect"] = "",
["videoOptionsVersion"] = "",
["gxApi"] = "",
["gxWindow"] = "",
["gxMaximize"] = "",
["graphicsQuality"] = "",
["playIntroMovie"] = "",
["mouseSpeed"] = "",
["Gamma"] = "",
["readTOS"] = "",
["lastReadTOS"] = "",
["readEULA"] = "",
["lastReadEULA"] = "",
["accounttype"] = "",
["debugLog0"] = "",
["debugLog1"] = "",
["debugLog2"] = "",
["ChatMusicVolume"] = "",
["ChatSoundVolume"] = "",
["ChatAmbienceVolume"] = "",
["VoiceActivationSensitivity"] = "",
["Sound_MasterVolume"] = "",
["Sound_SFXVolume"] = "",
["Sound_MusicVolume"] = "",
["Sound_AmbienceVolume"] = "",
["Sound_DialogVolume"] = "",
["farclip"] = "",
["particleDensity"] = "",
["waterDetail"] = "",
["rippleDetail"] = "",
["reflectionMode"] = "",
["sunShafts"] = "",
["refraction"] = "",
["groundEffectDensity"] = "",
["groundEffectDist"] = "",
["environmentDetail"] = "",
["projectedTextures"] = "",
["shadowMode"] = "",
["shadowTextureSize"] = "",
["SSAO"] = "",
["raidfarclip"] = "",
["raidwaterDetail"] = "",
["raidSsao"] = "",
["raidgroundeffectdensity"] = "",
["raidgroundEffectdist"] = "",
["raidshadowmode"] = "",
["raidterrainLodDist"] = "",
["raidWmoLoddist"] = "",
["raidtextureFilteringMode"] = "",
["raidProjectedTextures"] = "",
["raidEnvironmentdetail"] = "",
["raidShadowtexturesize"] = "",
["raidReflectionmode"] = "",
["raidsunshafts"] = "",
["raidParticledensity"] = "",
["raidRefraction"] = "",
["textureFilteringMode"] = "",
["terrainLodDist"] = "",
["wmoloddist"] = "",
["raidcomponentTexturelevel"] = "",
["componenttextureLevel"] = "",
["gametip"] = "",
["raiDgraphicsQuality"] = "",
["rAIdsettingsInit"] = "",
["gxresolution"] = "",
["taintLog"] = "",
["expandupgradepanel"] = "",
["checkaddonVersion"] = "",
["lastAddonversion"] = "",
["realmName"] = "",
["gxrefresh"] = "",
["horizonStart"] = "",
["outlineEngineMode"] = "",
["lodobjectcullSize"] = "",
["lodObjectminsize"] = "",
["RAIDhorizonstart"] = "",
["RAIDOutlineenginemode"] = "",
["RAIDlodobjectCullsize"] = "",
["RAIdlodObjectminsize"] = "",
["weatherDensity"] = "",
["raidweatherdensity"] = "",
["engineSurvey"] = "",
["terrainTextureLod"] = "",
["lodObjectcullDist"] = "",
["rAIDterraintexturelod"] = "",
["RaidlodobjectcullDist"] = "",
["agentLoglevel"] = "Logging level for agent (0, 1, 2)",
["serveralert"] = "Get the glue-string tag for the URL",
["overridearchive"] = "Whether or not the client loads alternate data",
["simd"] = "Enable SIMD features (e.g. SSE)",
["processAffinitymask"] = "Sets which core(s) WoW may execute on - changes require restart to take effect",
["streamingcameraradius"] = "Base radius of the streaming camera.",
["streamingCameramaxradius"] = "Max radius of the streaming camera.",
["streamingCameralookAheadtime"] = "Look ahead time for streaming.",
["disableAutoRealmselect"] = "Disable automatically selecting a realm on login",
["initialrealmlistTimeout"] = "How long to wait for the initial realm list before failing login (in seconds)",
["webChallengeURLTimeout"] = "How long to wait for the web challenge URL (in seconds). 0 means wait forever.",
["debugalloctrackstacktrace"] = "Whether to track the stacktrace for each debug allocation",
["debugallocSingleblade"] = "At startup only, choose a single blade such as a CSI peer to have debug allocators",
["usedebugallocators"] = "Should we use debug allocators (level: 0, 1, 2)",
["asyncthreadsleep"] = "Engine option: Async read thread sleep",
["asynchandlerTimeout"] = "Engine option: Async read main thread timeout",
["enablebgdl"] = "Background Download (on async net thread) Enabled",
["maxfps"] = "Set FPS limit",
["maxFPSBk"] = "Set background FPS limit",
["gxAdapter"] = "Force to run the specified adapter index (-1 to let client choose)",
["gxdepthResolveHandleCaching"] = "Caching of the target handle for the depth resolve",
["gxAFrdevicesCount"] = "Force to set number of AFR devices",
["gxMonitor"] = "monitor",
["gxFullscreenResolution"] = "resolution",
["gxWindowedresolution"] = "windowed resolution",
["gxnewresolution"] = "resolution to be set",
["gxpreferWindowedfullscreen"] = "prefer which fullscreen mode for toggle",
["gxtriplebuffer"] = "triple buffer",
["gxVsync"] = "vsync on or off",
["gxAspect"] = "constrain window aspect",
["gxcursor"] = "toggle hardware cursor",
["gxfixLag"] = "prevent cursor lag",
["gxmaxFrameLatency"] = "maximum number of frames ahead of GPU the CPU can be",
["gxStereoenabled"] = "Enable stereoscopic rendering",
["windowResizeLock"] = "prevent resizing in windowed mode",
["gxStereoconvergence"] = "Set stereoscopic rendering convergence depth",
["gxStereoSeparation"] = "Set stereoscopic rendering separation percentage",
["ErrorFilelog"] = "",
["M2usethreads"] = "multithread model animations",
["M2forceAdditiveparticleSort"] = "force all particles to sort as though they were additive",
["M2useinstancing"] = "use hardware instancing",
["m2UseLod"] = "use model lod",
["detailDoodadInstancing"] = "Detail doodad instancing",
["nearclip"] = "Near clip plane distance",
["particleMTDensity"] = "Multi-Tex particle density",
["reflectionDownscale"] = "Reflection downscale",
["bspcache"] = "BSP node caching",
["worldPoolUsage"] = "Usage static/dynamic/stream",
["terrainAlphabitDepth"] = "Terrain alpha map bit depth",
["groundeffectfade"] = "Ground effect fade",
["hwPcF"] = "Hardware PCF Filtering",
["gxtextureCacheSize"] = "GX Texture Cache Size",
["shadowsoft"] = "(BETA)Soft shadows (0/1)",
["maxLightcount"] = "Maximum lights to render",
["maxLightDist"] = "Maximum distance to render lights",
["sSAOdistance"] = "SSAO distance",
["sSAoBlur"] = "Blur technique (0=off, 1=gauss, 2=bilateral",
["DepthBasedOpacity"] = "Enable/Disable Soft Edge Effect",
["preloadstreamingdistTerrain"] = "Terrain preload distance when streaming",
["preloadstreamingdistObject"] = "Object preload distance when streaming",
["preloadloadingdistTerrain"] = "Terrain preload distance when loading",
["preloadLoadingDistObject"] = "Object preload distance when loading",
["skycloudlod"] = "Texture resolution for clouds",
["wmodoodadDist"] = "Wmo doodad load distance",
["entitylodDist"] = "Entity level of detail distance",
["doodadloddist"] = "Doodad level of detail distance",
["terrainMiplevel"] = "Terrain blend map mip level",
["worldMaxmipLevel"] = "World maximum texture mip level",
["worldBaseMip"] = "World texture base mip",
["terrainHoles"] = "Terrain holes affect occlusion",
["lightMode"] = "Quality of lighting",
["physicsLevel"] = "Level of physics world interaction",
["minimapPortalMax"] = "Max Number of Portals to traverse for minimap",
["Renderscale"] = "Render scale (for supersampling or undersampling)",
["Resamplequality"] = "Resample quality",
["MsAaQuality"] = "Multisampling AA quality",
["mSaAAlphaTest"] = "Enable MSAA for alpha-tested geometry",
["lodliquid"] = "Render using lod liquid",
["lodterrainDiv"] = "Terrain lod divisor",
["RaIDsettingsenabled"] = "Raid graphic settings are available",
["rAidsSaOblur"] = "Raid SSAO Blur technique",
["RAIddepthBasedopacity"] = "Raid Enable/Disable Soft Edge Effect",
["RaidgroundeffectFade"] = "Raid Ground effect fade",
["RAIDterrainmiplevel"] = "Terrain blend map mip level",
["RAIDworldBasemip"] = "World texture base mip",
["RAIDshadowsoft"] = "Soft shadows (0/1)",
["raidrippledetail"] = "Ripple surface detail",
["RAIdparticleMTDensity"] = "Multi-Tex particle density",
["raiDLightMode"] = "Quality of lighting",
["componentThread"] = "Multi thread character component processing",
["componentcompress"] = "Character component texture compression",
["componenttexLoadLimit"] = "Character component texture loading limit per frame",
["componentTexcacheSize"] = "Character component texture cache size (in MB)",
["componentSpecular"] = "Character component specular highlights",
["componentemissive"] = "Character component unlit/emissive",
["graphicstextureresolution"] = "UI value of the graphics setting",
["graphicstextureFiltering"] = "UI value of the graphics setting",
["graphicsprojectedtextures"] = "UI value of the graphics setting",
["graphicsviewdistance"] = "UI value of the graphics setting",
["graphicsenvironmentdetail"] = "UI value of the graphics setting",
["graphicsGroundclutter"] = "UI value of the graphics setting",
["graphicsshadowQuality"] = "UI value of the graphics setting",
["graphicsLiquiddetail"] = "UI value of the graphics setting",
["graphicsSunshafts"] = "UI value of the graphics setting",
["graphicsParticledensity"] = "UI value of the graphics setting",
["graphicsSSAO"] = "UI value of the graphics setting",
["graphicsDepthEffects"] = "UI value of the graphics setting",
["graphicslightingQuality"] = "UI value of the graphics setting",
["graphicsoutlineMode"] = "UI value of the graphics setting",
["raidgraphicsTextureresolution"] = "UI value of the raidGraphics setting",
["raidGraphicsTexturefiltering"] = "UI value of the raidGraphics setting",
["raidgraphicsProjectedtextures"] = "UI value of the raidGraphics setting",
["raidgraphicsviewDistance"] = "UI value of the raidGraphics setting",
["raidgraphicsEnvironmentdetail"] = "UI value of the raidGraphics setting",
["raidgraphicsGroundClutter"] = "UI value of the raidGraphics setting",
["raidGraphicsShadowQuality"] = "UI value of the raidGraphics setting",
["raidGraphicsLiquidDetail"] = "UI value of the raidGraphics setting",
["raidGraphicsSunshafts"] = "UI value of the raidGraphics setting",
["raidGraphicsParticleDensity"] = "UI value of the raidGraphics setting",
["raidGraphicsSSAO"] = "UI value of the raidGraphics setting",
["raidGraphicsDepthEffects"] = "UI value of the raidGraphics setting",
["raidGraphicsLightingQuality"] = "UI value of the raidGraphics setting",
["raidGraphicsOutlineMode"] = "UI value of the raidGraphics setting",
["warp"] = "UI value of the graphics setting",
["warpScreenSize"] = "Physical monitor size in cubits/decimeter",
["warpViewDistance"] = "Physical distance from the viewer to the monitor",
["warpViewTilt"] = "Angle of the side monitors IN RADIANS",
["shadowCull"] = "enable shadow frustum culling",
["shadowscissor"] = "enable scissoring when rendering shadowmaps",
["shadowInstancing"] = "enable instancing when rendering shadowmaps",
["hbaoNormals"] = "Use Normals for HBAO",
["hbaoBias"] = "HBAO Bias",
["hbaoRadius"] = "HBAO Radius",
["hbaoPowerExp"] = "HBAO Power Exponent",
["hbaoBlurSharp"] = "HBAO Blur Sharpness",
["animFrameSkipLOD"] = "animations will skip frames at distance",
["hotReloadModels"] = "Allow an active model to be reloaded when a new version is detected in the bin folder. If this is disabled, the model data will only be refreshed after all game objects using the model are deleted",
["forceLODCheck"] = "If enabled, we will skip checking DBC for LOD count and every m2 will scan the folder for skin profiles",
["BrowserNavigateLog"] = "Enables Logging of browser navigation requests (Requires /reload)",
["movieSubtitle"] = "Show movie subtitles",
["raidOrBattleCount"] = "How many times we've sent a raid or battleground survey to the servers",
["enableMouseSpeed"] = "Enables setting a custom mouse sensitivity to override the setting from the operating system.",
["fullDump"] = "When you crash, generate a full memory dump",
["Errors"] = "",
["showErrors"] = "",
["ErrorLevelMin"] = "",
["ErrorLevelMax"] = "",
["ErrorFilter"] = "",
["DesktopGamma"] = "",
["lastCharacterIndex"] = "Last character selected",
["readTerminationWithoutNotice"] = "Status of the Termination without Notice notice",
["lastReadTerminationWithoutNotice"] = "Last version for which the Termination without Notice notice was read",
["readScanning"] = "Status of the Scanning notice",
["reaDContest"] = "Status of the Contest notice",
["seenCharacterUpgradePopup"] = "Seen the free character upgrade popup",
["screenshotFormat"] = "Set the format of screenshots",
["screenshotQuality"] = "Set the quality of screenshots (1 - 10)",
["useIPv6"] = "Enable the usage of IPv6 sockets",
["disableServerNagle"] = "Disable server-side nagle algorithm",
["advancedCombatLogging"] = "Whether we want advanced combat log data sent from the server",
["bnetLogSeverity"] = "Set Battle.net's debug logging severity level",
["skipStartGear"] = "Whether we should show starter gear on character create",
["hdPlayerModels"] = "Use high definition replacements for player models",
["preloadPlayerModels"] = "Preload all local racial models into memory",
["StartTalkingDelay"] = "",
["StartTalkingTime"] = "",
["StopTalkingDelay"] = "",
["StopTalkingTime"] = "",
["OutboundChatVolume"] = "The software amplification factor (0.0 - 2.0)",
["inboundChatVolume"] = "The volume of all other chat you hear (0.0 - 1.0)",
["VoiceChatMode"] = "Push to talk(0) or voice activation(1)",
["EnableMicrophone"] = "Enables the microphone so you can speak.",
["EnableVoiceChat"] = "Enables the voice chat feature.",
["VoiceChatSelfMute"] = "Turn off your ability to talk.",
["PushToTalkButton"] = "String representation of the Push-To-Talk button.",
["Sound_NumChannels"] = "number of sound channels",
["Sound_EnableReverb"] = "",
["Sound_OutputDriverIndex"] = "",
["Sound_OutputDriverName"] = "",
["Sound_VoiceChatInputDriverIndex"] = "",
["Sound_VoiceChatInputDriverName"] = "",
["Sound_VoiceChatOutputDriverIndex"] = "",
["Sound_VoiceChatOutputDriverName"] = "",
["Sound_DSPBufferSize"] = "sound buffer size, default 0",
["Sound_OutputSampleRate"] = "output sample rate",
["Sound_EnableMode2"] = "test",
["Sound_EnableMixMode2"] = "test",
["Sound_EnableSFX"] = "",
["Sound_EnableAmbience"] = "Enable Ambience",
["Sound_EnableErrorSpeech"] = "error speech",
["Sound_EnableMusic"] = "Enables music",
["Sound_EnablePetBattleMusic"] = "Enables music in pet battles",
["Sound_EnableAllSound"] = "",
["Sound_EnableDialog"] = "all dialog",
["Sound_ListenerAtCharacter"] = "lock listener at character",
["Sound_EnableEmoteSounds"] = "",
["Sound_ZoneMusicNoDelay"] = "",
["Sound_EnableArmorFoleySoundForSelf"] = "",
["Sound_EnableArmorFoleySoundForOthers"] = "",
["Sound_EnableDSPEffects"] = "",
["Sound_EnablePetSounds"] = "Enables pet sounds",
["Sound_MaxCacheSizeInBytes"] = "Max cache size in bytes",
["Sound_MaxCacheableSizeInBytes"] = "Max sound size that will be cached, larger files will be streamed instead",
["FootstepSounds"] = "play footstep sounds",
["SoundUseNewBusSystem"] = "use the new bus structure or fallback to the old one",
["debugSoundPlayerSpellsOnlyOnPlayerBus"] = "",
["SoundPerf_VariationCap"] = "Limit sound kit variations to cut down on memory usage and disk thrashing on 32-bit machines",
["Sound_EnablePositionalLowPassFilter"] = "Environmental effect to make sounds duller behind you or far away",
["enableWowMouse"] = "Enable Steelseries World of Warcraft Mouse",
["synchronizeSettings"] = "Whether client settings should be stored on the server",
["releaseUITextures"] = "Release Hidden UI Textures by default",
["ffxRectangle"] = "use rectangle texture for full screen effects",
["ffxAntiAliasingMode"] = "Anti Aliasing Mode",
["daltonize"] = "Attempt to correct for color blindness (set colorblindSimulator to type of colorblindness)",
["colorblindWeaknessFactor"] = "Amount of sensitivity. e.g. Protanope (red-weakness) 0.0 = not colorblind, 1.0 = full weakness(Protanopia), 0.5 = mid weakness(Protanomaly)",
["colorblindSimulator"] = "Type of color blindness",
["forceEnglishNames"] = "",
["synchronizeConfig"] = "",
["synchronizeBindings"] = "",
["synchronizeMacros"] = "",
["synchronizeChatFrames"] = "",
["streamBeams"] = "Use vertex streaming for beams (Gfx Driver Workaround). 0=Auto Detect, 1=Never Stream, 2=Always Stream",
["sceneOcclusionEnable"] = "Scene software occlusion",
["showfootprintparticles"] = "toggles rendering of footprint particles",
["pathSmoothing"] = "NPC will round corners on ground paths",
["POIShiftComplete"] = "",
["incompleteQuestPriorityThresholdDelta"] = "",
["scriptProfile"] = "Whether or not script profiling is enabled",
["deselectOnClick"] = "Clear the target when clicking on terrain",
["autoInteract"] = "Toggles auto-move to interact target",
["autoStand"] = "Automatically stand when needed",
["autoDismount"] = "Automatically dismount when needed",
["autoDismountFlying"] = "If enabled, your character will automatically dismount before casting while flying",
["autoUnshift"] = "Automatically leave shapeshift form when needed",
["autoClearAFK"] = "Automatically clear AFK when moving or chatting",
["lootUnderMouse"] = "Whether the loot window should open under the mouse",
["autoOpenLootHistory"] = "Automatically opens the Loot History window when certain items drop",
["alwaysCompareItems"] = "Always show item comparison tooltips",
["SpellTooltip_DisplayAvgValues"] = "Toggles the spread from (min-max) to (avg)",
["breakUpLargeNumbers"] = "Toggles using commas in large numbers",
["superTrackerDist"] = "",
["spellBookSort"] = "",
["interactOnLeftClick"] = "Test CVar for interacting with NPC's on left click",
["showTargetOfTarget"] = "Whether the target of target frame should be shown",
["targetOfTargetMode"] = "The conditions under which target of target should be shown",
["showTargetCastbar"] = "Show the spell your current target is casting",
["showVKeyCastbar"] = "If the V key display is up for your current target, show the enemy cast bar with the target's health bar in the game field",
["spellActivationOverlayOpacity"] = "The opacity of the Spell Activation Overlays (a.k.a. Spell Alerts)",
["doNotFlashLowHealthWarning"] = "Do not flash your screen red when you are low on health.",
["reducedLagTolerance"] = "Enables the Reduced Lag Tolerance slider. (Doesn't actually change anything. Use \"MaxSpellStartRecoveryOffset\" for that.)",
["maxSpellStartRecoveryOffset"] = "Determines how far ahead of the end of a spell start recovery the spell system can be before allowing spell request to be sent to the server",
["rotateMinimap"] = "Whether to rotate the entire minimap instead of the player arrow",
["minimapAltitudeHintMode"] = "Change minimap altitude difference display. 0=none, 1=darken, 2=arrows",
["scriptErrors"] = "Whether or not the UI shows Lua errors",
["scriptWarnings"] = "Whether or not the UI shows Lua warnings",
["screenEdgeFlash"] = "Whether to show a red flash while you are in combat with the world map up",
["displayFreeBagSlots"] = "Whether or not the backpack button should indicate how many inventory slots you've got free",
["displayWorldPVPObjectives"] = "Whether to show world PvP objectives",
["colorblindMode"] = "Enables colorblind accessibility features in the game",
["enableMovePad"] = "Enables the MovePad accessibility feature in the game",
["streamStatusMessage"] = "Whether to display status messages while streaming content",
["emphasizeMySpellEffects"] = "Whether other player's spell impacts are toned down or not.",
["allowCompareWithToggle"] = "",
["countdownForCooldowns"] = "Whether to use number countdown instead of radial swipe for action button cooldowns or not.",
["autoQuestWatch"] = "Whether to automatically watch all quests when you obtain them",
["autoQuestProgress"] = "Whether to automatically watch all quests when they are updated",
["advancedWatchFrame"] = "Enables advanced Objectives tracking features",
["watchFrameIgnoreCursor"] = "Disables Objectives frame mouseover and title dropdown.",
["watchFrameBaseAlpha"] = "Objectives frame opacity.",
["watchFrameState"] = "Stores Objectives frame locked and collapsed states",
["flaggedTutorials"] = "Internal cvar for saving completed tutorials in order",
["actionedAdventureJournalEntries"] = "Which adventure journal entries flagged with ADVENTURE_JOURNAL_HIDE_AFTER_ACTION the user acted upon",
["trackQuestSorting"] = "Whether to sort the last tracked quest to the top of the quest tracker or use proximity sorting",
["mapAnimMinAlpha"] = "Alpha value to animate to when player moves with windowed world map open",
["mapAnimDuration"] = "Duration for the alpha animation",
["mapAnimStartDelay"] = "Start delay for the alpha animation",
["profanityFilter"] = "Whether to enable mature language filtering",
["spamFilter"] = "Whether to enable spam filtering",
["chatBubbles"] = "Whether to show in-game chat bubbles",
["chatBubblesParty"] = "Whether to show in-game chat bubbles for party chat",
["removeChatDelay"] = "Remove Chat Hover Delay",
["guildShowOffline"] = "Show offline guild members in the guild UI",
["guildMemberNotify"] = "Receive notification when guild members log on/off",
["lfgAutoFill"] = "Whether to automatically add party members while looking for a group",
["lfgAutoJoin"] = "Whether to automatically join a party while looking for a group",
["chatStyle"] = "The style of Edit Boxes for the ChatFrame. Valid values: \"classic\", \"im\"",
["wholeChatWindowClickable"] = "Whether the user may click anywhere on a chat window to change EditBox focus (only works in IM style)",
["whisperMode"] = "The action new whispers take by default: \"popout\", \"inline\", \"popout_and_inline\"",
["showTimestamps"] = "The format of timestamps in chat or \"none\"",
["chatMouseScroll"] = "Whether the user can use the mouse wheel to scroll through chat",
["enableTwitter"] = "Whether Twitter integration is enabled",
["twitterGetConfigTime"] = "Last time that we got Twitter configuration data successfully",
["twitterShortUrlLength"] = "Number of characters that non-https URLS get shortened to",
["twitterShortUrlLengthHttps"] = "Number of characters that https URLS get shortened to",
["twitterCharactersPerMedia"] = "Number of characters needed when attaching media to a Twitter post",
["findYourselfMode"] = "Highlight you character. 0 = circle, 1 = circle & outline",
["findYourselfInRaidOnlyInCombat"] = "Highlight your character in Raids only when in combat",
["findYourselfInBGOnlyInCombat"] = "Highlight your character in Battlegrounds only when in combat",
["findYourselfAnywhereOnlyInCombat"] = "Highlight your character only when in combat",
["findYourselfInRaid"] = "Always Highlight your character in Raids",
["findYourselfInBG"] = "Always Highlight your character in Battlegrounds",
["findYourselfAnywhere"] = "Always Highlight your character",
["comboPointLocation"] = "Location of combo points in UI. 1=target, 2=self",
["nameplateOtherAtBase"] = "Position other nameplates at the base, rather than overhead",
["lockActionBars"] = "Whether the action bars should be locked, preventing changes",
["alwaysShowActionBars"] = "Whether to always show the action bar grid",
["secureAbilityToggle"] = "Whether you should be protected against accidentally double-clicking an aura",
["UnitNameOwn"] = "",
["UnitNameNPC"] = "",
["UnitNameHostleNPC"] = "",
["UnitNameForceHideMinus"] = "",
["UnitNamePlayerGuild"] = "",
["UnitNamePlayerPVPTitle"] = "",
["UnitNameEnemyPlayerName"] = "",
["UnitNameEnemyPetName"] = "",
["UnitNameEnemyGuardianName"] = "",
["UnitNameEnemyTotemName"] = "",
["UnitNameEnemyMinionName"] = "",
["UnitNameFriendlyPlayerName"] = "",
["UnitNameFriendlyPetName"] = "",
["UnitNameFriendlyGuardianName"] = "",
["UnitNameFriendlyTotemName"] = "",
["UnitNameFriendlyMinionName"] = "",
["UnitNameNonCombatCreatureName"] = "",
["UnitNameFriendlySpecialNPCName"] = "",
["UnitNameGuildTitle"] = "",
["WorldTextStartPosRandomness"] = "",
["WorldTextScreenY"] = "",
["WorldTextCritScreenY"] = "",
["WorldTextRandomXY"] = "",
["WorldTextRandomZMin"] = "",
["WorldTextRandomZMax"] = "",
["WorldTextNonRandomZ"] = "",
["WorldTextGravity"] = "",
["WorldTextRampPow"] = "",
["WorldTextRampPowCrit"] = "",
["WorldTextRampDuration"] = "",
["floatingCombatTextCombatDamage"] = "Display damage numbers over hostile creatures when damaged",
["floatingCombatTextCombatDamageStyle"] = "No longer used",
["floatingCombatTextCombatDamageAllAutos"] = "Show all auto-attack numbers, rather than hiding non-event numbers",
["floatingCombatTextCombatDamageDirectionalOffset"] = "Amount to offset directional damage numbers when they start",
["floatingCombatTextCombatDamageDirectionalScale"] = "Directional damage numbers movement scale (0 = no directional numbers)",
["floatingCombatTextCombatLogPeriodicSpells"] = "Display damage caused by periodic effects",
["floatingCombatTextPetMeleeDamage"] = "Display pet melee damage in the world",
["floatingCombatTextPetSpellDamage"] = "Display pet spell damage in the world",
["floatingCombatTextCombatHealing"] = "Display amount of healing you did to the target",
["floatingCombatTextCombatHealingAbsorbTarget"] = "Display amount of shield added to the target.",
["floatingCombatTextCombatHealingAbsorbSelf"] = "Shows a message when you gain a shield.",
["enableFloatingCombatText"] = "Whether to show floating combat text",
["floatingCombatTextFloatMode"] = "The combat text float mode",
["enablePetBattleFloatingCombatText"] = "Whether to show floating combat text for pet battles",
["floatingCombatTextCombatState"] = "",
["floatingCombatTextDodgeParryMiss"] = "",
["floatingCombatTextDamageReduction"] = "",
["floatingCombatTextRepChanges"] = "",
["floatingCombatTextReactives"] = "",
["floatingCombatTextFriendlyHealers"] = "",
["floatingCombatTextComboPoints"] = "",
["floatingCombatTextLowManaHealth"] = "",
["floatingCombatTextEnergyGains"] = "",
["floatingCombatTextPeriodicEnergyGains"] = "",
["floatingCombatTextHonorGains"] = "",
["floatingCombatTextAuras"] = "",
["floatingCombatTextAllSpellMechanics"] = "",
["floatingCombatTextSpellMechanics"] = "",
["floatingCombatTextSpellMechanicsOther"] = "",
["xpBarText"] = "Whether the XP bar shows the numeric experience value",
["statusText"] = "Whether the status bars show numeric health/mana values",
["statusTextDisplay"] = "Whether numeric health/mana values are shown as raw values or percentages, or both",
["showPartyBackground"] = "Show a background behind party members",
["partyBackgroundOpacity"] = "The opacity of the party background",
["buffDurations"] = "Whether to show buff durations",
["showToastOnline"] = "Whether to show Battle.net message for friend coming online",
["showToastOffline"] = "Whether to show Battle.net message for friend going offline",
["showToastBroadcast"] = "Whether to show Battle.net message for broadcasts",
["showToastFriendRequest"] = "Whether to show Battle.net message for friend requests",
["showToastConversation"] = "Whether to show Battle.net message for conversations",
["showToastWindow"] = "Whether to show Battle.net system messages in a toast window",
["toastDuration"] = "How long to display Battle.net toast windows, in seconds",
["mouseInvertYaw"] = "",
["mouseInvertPitch"] = "",
["cameraBobbing"] = "",
["cameraHeadMovementStrength"] = "",
["cameraHeadMovementWhileStanding"] = "",
["cameraHeadMovementRange"] = "",
["cameraHeadMovementSmoothRate"] = "",
["cameraDynamicPitch"] = "",
["cameraDynamicPitchBaseFovPad"] = "",
["cameraDynamicPitchBaseFovPadFlying"] = "",
["cameraDynamicPitchSmartPivotCutoffDist"] = "",
["cameraOverShoulder"] = "",
["cameraLockedTargetFocusing"] = "",
["cameraDistanceMoveSpeed"] = "",
["cameraPitchMoveSpeed"] = "",
["cameraYawMoveSpeed"] = "",
["cameraBobbingSmoothSpeed"] = "",
["cameraFoVSmoothSpeed"] = "",
["cameraDistanceSmoothSpeed"] = "",
["cameraGroundSmoothSpeed"] = "",
["cameraHeightSmoothSpeed"] = "",
["cameraPitchSmoothSpeed"] = "",
["cameraTargetSmoothSpeed"] = "",
["cameraYawSmoothSpeed"] = "",
["cameraFlyingMountHeightSmoothSpeed"] = "",
["cameraViewBlendStyle"] = "",
["cameraView"] = "",
["camerasmooth"] = "",
["cameraSmoothPitch"] = "",
["cameraSmoothYaw"] = "",
["cameraSmoothStyle"] = "",
["cameraSmoothTrackingStyle"] = "",
["cameraCustomViewSmoothing"] = "",
["cameraSmoothNeverIdleDelay"] = "",
["cameraSmoothNeverIdleFactor"] = "",
["cameraSmoothNeverStopDelay"] = "",
["cameraSmoothNeverStopFactor"] = "",
["cameraSmoothNeverTrackDelay"] = "",
["cameraSmoothNeverTrackFactor"] = "",
["cameraSmoothNeverMoveDelay"] = "",
["cameraSmoothNeverMoveFactor"] = "",
["cameraSmoothNeverStrafeDelay"] = "",
["cameraSmoothNeverStrafeFactor"] = "",
["cameraSmoothNeverTurnDelay"] = "",
["cameraSmoothNeverTurnFactor"] = "",
["cameraSmoothNeverFearDelay"] = "",
["cameraSmoothNeverFearFactor"] = "",
["cameraSmoothViewDataNeverDistanceDelay"] = "",
["cameraSmoothViewDataNeverDistanceFactor"] = "",
["cameraSmoothViewDataNeverPitchDelay"] = "",
["cameraSmoothViewDataNeverPitchFactor"] = "",
["cameraSmoothViewDataNeverYawDelay"] = "",
["cameraSmoothViewDataNeverYawFactor"] = "",
["cameraTerrainTiltNeverFallAbsorb"] = "",
["cameraTerrainTiltNeverFallDelay"] = "",
["cameraTerrainTiltNeverFallFactor"] = "",
["cameraTerrainTiltNeverFearAbsorb"] = "",
["cameraTerrainTiltNeverFearDelay"] = "",
["cameraTerrainTiltNeverFearFactor"] = "",
["cameraTerrainTiltNeverIdleAbsorb"] = "",
["cameraTerrainTiltNeverIdleDelay"] = "",
["cameraTerrainTiltNeverIdleFactor"] = "",
["cameraTerrainTiltNeverJumpAbsorb"] = "",
["cameraTerrainTiltNeverJumpDelay"] = "",
["cameraTerrainTiltNeverJumpFactor"] = "",
["cameraTerrainTiltNeverMoveAbsorb"] = "",
["cameraTerrainTiltNeverMoveDelay"] = "",
["cameraTerrainTiltNeverMoveFactor"] = "",
["cameraTerrainTiltNeverStrafeAbsorb"] = "",
["cameraTerrainTiltNeverStrafeDelay"] = "",
["cameraTerrainTiltNeverStrafeFactor"] = "",
["cameraTerrainTiltNeverSwimAbsorb"] = "",
["cameraTerrainTiltNeverSwimDelay"] = "",
["cameraTerrainTiltNeverSwimFactor"] = "",
["cameraTerrainTiltNeverTaxiAbsorb"] = "",
["cameraTerrainTiltNeverTaxiDelay"] = "",
["cameraTerrainTiltNeverTaxiFactor"] = "",
["cameraTerrainTiltNeverTrackAbsorb"] = "",
["cameraTerrainTiltNeverTrackDelay"] = "",
["cameraTerrainTiltNeverTrackFactor"] = "",
["cameraTerrainTiltNeverTurnAbsorb"] = "",
["cameraTerrainTiltNeverTurnDelay"] = "",
["cameraTerrainTiltNeverTurnFactor"] = "",
["cameraSmoothSmartIdleDelay"] = "",
["cameraSmoothSmartIdleFactor"] = "",
["cameraSmoothSmartStopDelay"] = "",
["cameraSmoothSmartStopFactor"] = "",
["cameraSmoothSmartTrackDelay"] = "",
["cameraSmoothSmartTrackFactor"] = "",
["cameraSmoothSmartMoveDelay"] = "",
["cameraSmoothSmartMoveFactor"] = "",
["cameraSmoothSmartStrafeDelay"] = "",
["cameraSmoothSmartStrafeFactor"] = "",
["cameraSmoothSmartTurnDelay"] = "",
["cameraSmoothSmartTurnFactor"] = "",
["cameraSmoothSmartFearDelay"] = "",
["cameraSmoothSmartFearFactor"] = "",
["cameraSmoothViewDataSmartDistanceDelay"] = "",
["cameraSmoothViewDataSmartDistanceFactor"] = "",
["cameraSmoothViewDataSmartPitchDelay"] = "",
["cameraSmoothViewDataSmartPitchFactor"] = "",
["cameraSmoothViewDataSmartYawDelay"] = "",
["cameraSmoothViewDataSmartYawFactor"] = "",
["cameraTerrainTiltSmartFallAbsorb"] = "",
["cameraTerrainTiltSmartFallDelay"] = "",
["cameraTerrainTiltSmartFallFactor"] = "",
["cameraTerrainTiltSmartIdleFactor"] = "",
["cameraTerrainTiltSmartJumpAbsorb"] = "",
["cameraTerrainTiltSmartJumpDelay"] = "",
["cameraTerrainTiltSmartJumpFactor"] = "",
["cameraTerrainTiltSmartMoveAbsorb"] = "",
["cameraTerrainTiltSmartMoveDelay"] = "",
["cameraTerrainTiltSmartMoveFactor"] = "",
["cameraTerrainTiltSmartStrafeAbsorb"] = "",
["cameraTerrainTiltSmartStrafeDelay"] = "",
["cameraTerrainTiltSmartStrafeFactor"] = "",
["cameraTerrainTiltSmartSwimAbsorb"] = "",
["cameraTerrainTiltSmartSwimDelay"] = "",
["cameraTerrainTiltSmartSwimFactor"] = "",
["cameraTerrainTiltSmartTaxiAbsorb"] = "",
["cameraTerrainTiltSmartTaxiDelay"] = "",
["cameraTerrainTiltSmartTaxiFactor"] = "",
["cameraTerrainTiltSmartTrackAbsorb"] = "",
["cameraTerrainTiltSmartTrackDelay"] = "",
["cameraTerrainTiltSmartTrackFactor"] = "",
["cameraTerrainTiltSmartTurnAbsorb"] = "",
["cameraTerrainTiltSmartTurnDelay"] = "",
["cameraTerrainTiltSmartTurnFactor"] = "",
["cameraSmoothAlwaysIdleDelay"] = "",
["cameraSmoothAlwaysIdleFactor"] = "",
["cameraSmoothAlwaysStopDelay"] = "",
["cameraSmoothAlwaysStopFactor"] = "",
["cameraSmoothAlwaysTrackDelay"] = "",
["cameraSmoothAlwaysTrackFactor"] = "",
["cameraSmoothAlwaysMoveDelay"] = "",
["cameraSmoothAlwaysMoveFactor"] = "",
["cameraSmoothAlwaysStrafeDelay"] = "",
["cameraSmoothAlwaysStrafeFactor"] = "",
["cameraSmoothAlwaysTurnDelay"] = "",
["cameraSmoothAlwaysTurnFactor"] = "",
["cameraSmoothAlwaysFearDelay"] = "",
["cameraSmoothAlwaysFearFactor"] = "",
["cameraSmoothViewDataAlwaysDistanceDelay"] = "",
["cameraSmoothViewDataAlwaysDistanceFactor"] = "",
["camerASmoothViewDataAlwaysPitchDelay"] = "",
["cameraSmoothViewDataAlwaysPitchFactor"] = "",
["cameraSmoothViewDataAlwaysYawDelay"] = "",
["cameraSmoothViewDataAlwaysYawFactor"] = "",
["cameraTerrainTiltAlwaysFallAbsorb"] = "",
["cameraTerrainTiltAlwaysFallDelay"] = "",
["cameraTerrainTiltAlwaysFallFactor"] = "",
["cameraTerrainTiltAlwaysFearAbsorb"] = "",
["cameraTerrainTiltAlwaysFearDelay"] = "",
["cameraTerrainTiltAlwaysFearFactor"] = "",
["cameraTerrainTiltAlwaysIdleAbsorb"] = "",
["cameraTerrainTiltAlwaysIdleDelay"] = "",
["cameraTerrainTiltAlwaysIdleFactor"] = "",
["cameraTerrainTiltAlwaysJumpAbsorb"] = "",
["cameraTerrainTiltAlwaysJumpDelay"] = "",
["cameraTerrainTiltAlwaysJumpFactor"] = "",
["cameraTerrainTiltAlwaysMoveAbsorb"] = "",
["cameraTerrainTiltAlwaysMoveDelay"] = "",
["cameraTerrainTiltAlwaysMoveFactor"] = "",
["cameraTerrainTiltAlwaysStrafeAbsorb"] = "",
["cameraTerrainTiltAlwaysStrafeDelay"] = "",
["cameraTerrainTiltAlwaysStrafeFactor"] = "",
["cameraTerrainTiltAlwaysSwimAbsorb"] = "",
["cameraTerrainTiltAlwaysSwimDelay"] = "",
["cameraTerrainTiltAlwaysSwimFactor"] = "",
["cameraTerrainTiltAlwaysTaxiAbsorb"] = "",
["cameraTerrainTiltAlwaysTaxiDelay"] = "",
["cameraTerrainTiltAlwaysTaxiFactor"] = "",
["cameraTerrainTiltAlwaysTrackAbsorb"] = "",
["cameraTerrainTiltAlwaysTrackDelay"] = "",
["cameraTerrainTiltAlwaysTrackFactor"] = "",
["cameraTerrainTiltAlwaysTurnAbsorb"] = "",
["cameraTerrainTiltAlwaysTurnDelay"] = "",
["cameraTerrainTiltAlwaysTurnFactor"] = "",
["cameraSmoothSplineIdleDelay"] = "",
["cameraSmoothSplineIdleFactor"] = "",
["cameraSmoothSplineStopDelay"] = "",
["cameraSmoothSplineStopFactor"] = "",
["cameraSmoothSplineTrackDelay"] = "",
["cameraSmoothSplineTrackFactor"] = "",
["cameraSmoothSplineMoveDelay"] = "",
["cameraSmoothSplineMoveFactor"] = "",
["cameraSmoothSplineStrafeDelay"] = "",
["cameraSmoothSplineStrafeFactor"] = "",
["cameraSmoothSplineTurnDelay"] = "",
["cameraSmoothSplineTurnFactor"] = "",
["cameraSmoothSplineFearDelay"] = "",
["cameraSmoothSplineFearFactor"] = "",
["cameraSmoothViewDataSplineDistanceDelay"] = "",
["cameraSmoothViewDataSplineDistanceFactor"] = "",
["cameraSmoothViewDataSplinePitchDelay"] = "",
["cameraSmoothViewDataSplinePitchFactor"] = "",
["cameraSmoothViewDataSplineYawDelay"] = "",
["cameraSmoothViewDataSplineYawFactor"] = "",
["cameraTerrainTiltSplineFallAbsorb"] = "",
["cameraTerrainTiltSplineFallDelay"] = "",
["cameraTerrainTiltSplineFallFactor"] = "",
["cameraTerrainTiltSplineFearAbsorb"] = "",
["cameraTerrainTiltSplineFearDelay"] = "",
["cameraTerrainTiltSplineFearFactor"] = "",
["cameraTerrainTiltSplineIdleAbsorb"] = "",
["cameraTerrainTiltSplineIdleDelay"] = "",
["cameraTerrainTiltSplineIdleFactor"] = "",
["cameraTerrainTiltSplineJumpAbsorb"] = "",
["cameraTerrainTiltSplineJumpDelay"] = "",
["cameraTerrainTiltSplineJumpFactor"] = "",
["cameraTerrainTiltSplineMoveAbsorb"] = "",
["cameraTerrainTiltSplineMoveDelay"] = "",
["cameraTerrainTiltSplineMoveFactor"] = "",
["cameraTerrainTiltSplineStrafeAbsorb"] = "",
["cameraTerrainTiltSplineStrafeDelay"] = "",
["cameraTerrainTiltSplineStrafeFactor"] = "",
["cameraTerrainTiltSplineSwimAbsorb"] = "",
["cameraTerrainTiltSplineSwimDelay"] = "",
["cameraTerrainTiltSplineSwimFactor"] = "",
["cameraTerrainTiltSplineTaxiAbsorb"] = "",
["cameraTerrainTiltSplineTaxiDelay"] = "",
["cameraTerrainTiltSplineTaxiFactor"] = "",
["cameraTerrainTiltSplineTrackAbsorb"] = "",
["cameraTerrainTiltSplineTrackDelay"] = "",
["cameraTerrainTiltSplinetrackFactor"] = "",
["cameraTerrainTiltSplineTurnAbsorb"] = "",
["cameraTerrainTiltSplineTurnDelay"] = "",
["cameraTerrainTiltSplineTurnFactor"] = "",
["cameraSmoothSmarterIdleDelay"] = "",
["cameraSmoothSmarterIdleFactor"] = "",
["cameraSmoothSmarterStopDelay"] = "",
["cameraSmoothSmarterStopFactor"] = "",
["cameraSmoothSmarterTrackDelay"] = "",
["cameraSmoothSmarterTrackFactor"] = "",
["cameraSmoothSmarterMoveDelay"] = "",
["cameraSmoothSmarterMoveFactor"] = "",
["cameraSmoothSmarterStrafeDelay"] = "",
["cameraSmoothSmarterStrafeFactor"] = "",
["cameraSmoothSmarterTurnDelay"] = "",
["cameraSmoothSmarterTurnFactor"] = "",
["cameraSmoothSmarterFearDelay"] = "",
["cameraSmoothSmarterFearFactor"] = "",
["cameraSmoothViewDataSmarterDistanceDelay"] = "",
["cameraSmoothViewDataSmarterDistanceFactor"] = "",
["cameraSmoothViewDataSmarterPitchDelay"] = "",
["cameraSmoothViewDataSmarterPitchFactor"] = "",
["cameraSmoothViewDataSmarterYawDelay"] = "",
["cameraSmoothViewDataSmarterYawFactor"] = "",
["cameraTerrainTiltSmarterFallAbsorb"] = "",
["cameraTerrainTiltSmarterFallDelay"] = "",
["cameraTerrainTiltSmarterFallFactor"] = "",
["cameraTerrainTiltSmarterFearAbsorb"] = "",
["cameraTerrainTiltSmarterFearDelay"] = "",
["cameraTerrainTiltSmarterFearFactor"] = "",
["cameraTerrainTiltSmarterIdleAbsorb"] = "",
["cameraTerrainTiltSmarterIdleDelay"] = "",
["cameraTerrainTiltSmarterIdleFactor"] = "",
["cameraTerrainTiltSmarterJumpAbsorb"] = "",
["cameraTerrainTiltSmarterJumpDelay"] = "",
["cameraTerrainTiltSmarterJumpFactor"] = "",
["cameraTerrainTiltSmarterMoveAbsorb"] = "",
["cameraTerrainTiltSmarterMoveDelay"] = "",
["cameraTerrainTiltSmarterMoveFactor"] = "",
["cameraTerrainTiltSmarterStrafeAbsorb"] = "",
["cameraTerrainTiltSmarterStrafeDelay"] = "",
["cameraTerrainTiltSmarterStrafeFactor"] = "",
["cameraTerrainTiltSmarterSwimAbsorb"] = "",
["cameraTerrainTiltSmarterSwimDelay"] = "",
["cameraTerrainTiltSmarterSwimFactor"] = "",
["cameraTerrainTiltSmarterTaxiAbsorb"] = "",
["cameraTerrainTiltSmarterTaxiDelay"] = "",
["cameraTerrainTiltSmarterTaxiFactor"] = "",
["cameraTerrainTiltSmarterTrackAbsorb"] = "",
["cameraTerrainTiltSmarterTrackDelay"] = "",
["cameraTerrainTiltSmarterTrackFactor"] = "",
["cameraTerrainTiltSmarterTurnAbsorb"] = "",
["cameraTerrainTiltSmarterTurnDelay"] = "",
["cameraTerrainTiltSmarterTurnFactor"] = "",
["cameraTerrainTilt"] = "",
["cameraTerrainTiltTimeMin"] = "",
["cameraTerrainTiltTimeMax"] = "",
["cameraWaterCollision"] = "",
["cameraHeightIgnoreStandState"] = "",
["cameraPivot"] = "",
["cameraPivotDXMax"] = "",
["cameraPivotDYMin"] = "",
["cameraDive"] = "",
["cameraSurfacePitch"] = "",
["cameraSubmergePitch"] = "",
["cameraSurfaceFinalPitch"] = "",
["cameraSubmergeFinalpitch"] = "",
["cameraDistanceMax"] = "",
["cameraDistanceMaxFactor"] = "",
["cameraPitchSmoothMin"] = "",
["cameraPitchSmoothMax"] = "",
["cameraYawSmoothMin"] = "",
["cameraYawSmoothMax"] = "",
["cameraSmoothTimeMin"] = "",
["cameraSmoothTimeMax"] = "",
["UberTooltips"] = "Show verbose tooltips",
["showTutorials"] = "display tutorials",
["showNPETutorials"] = "display NPE tutorials",
["unitHighlights"] = "Whether the highlight circle around units should be displayed",
["enablePVPNotifyAFK"] = "The ability to shutdown the AFK notification system",
["serviceTypeFilter"] = "Which trainer services to show",
["autojoinPartyVoice"] = "Automatically join the voice session in party/raid chat",
["autojoinBGVoice"] = "Automatically join the voice session in battleground chat",
["PushToTalkSound"] = "Play a sound when voice recording activates and deactivates",
["talentFrameShown"] = "The talent UI has been shown",
["auctionDisplayOnCharacter"] = "Show auction items on the dress-up paperdoll",
["addFriendInfoShown"] = "The info for Add Friend has been shown",
["pendingInviteInfoShown"] = "The info for pending invites has been shown",
["timeMgrUseMilitaryTime"] = "Toggles the display of either 12 or 24 hour time",
["timeMgrUseLocalTime"] = "Toggles the use of either the realm time or your system time",
["timeMgrAlarmTime"] = "The time manager's alarm time in minutes",
["timeMgrAlarmMessage"] = "The time manager's alarm message",
["timeMgrAlarmEnabled"] = "Toggles whether or not the time manager's alarm will go off",
["combatLogRetentionTime"] = "The maximum duration in seconds to retain combat log entries",
["combatLogReducedRetentionTime"] = "The maximum duration in seconds to retain combat log entries when we're low on memory",
["predictedHealth"] = "Whether or not to use predicted health values in the UI",
["predictedPower"] = "Whether or not to use predicted power values in the UI",
["threatWorldText"] = "Whether or not to show threat floaters in combat",
["threatShowNumeric"] = "Whether or not to show numeric threat on the target and focus frames",
["threatPlaySounds"] = "Whether or not to sounds when certain threat transitions occur",
["violenceLevel"] = "Sets the violence level of the game",
["lfgListSearchLanguages"] = "A simple bitfield for what languages we want to search in.",
["lastTalkedToGM"] = "Stores the last GM someone was talking to in case they reload the UI while the GM chat window is open.",
["autoCompleteResortNamesOnRecency"] = "Shows people you recently spoke with higher up on the AutoComplete list.",
["autoCompleteWhenEditingFromCenter"] = "If you edit a name by inserting characters into the center, a smarter auto-complete will occur.",
["autoCompleteUseContext"] = "The system will, for example, only show people in your guild when you are typing /gpromote. Names will also never be removed.",
["colorChatNamesByClass"] = "If enabled, the name of a player speaking in chat will be colored according to his class.",
["dontShowEquipmentSetsOnItems"] = "Don't show which equipment sets an item is associated with",
["ActionButtonUseKeyDown"] = "Activate the action button on a keydown",
["petJournalFilters"] = "Bitfield for which collected filters are applied in the pet journal",
["petJournalTypeFilters"] = "Bitfield for which type filters are applied in the pet journal",
["petJournalSourceFilters"] = "Bitfield for which source filters are applied in the pet journal",
["petJournalSort"] = "Sorting value for the pet journal",
["mountJournalFilters"] = "Bitfield for which collected filters are applied in the mount journal",
["mountJournalSourceFilters"] = "Bitfield for which source filters are applied in the mount journal",
["toyBoxCollectedFilters"] = "Bitfield for which collected filters are applied in the toybox",
["toyBoxSourceFilters"] = "Bitfield for which source filters are applied in the toybox",
["heirloomCollectedFilters"] = "Bitfield for which collected filters are applied in the heirloom journal",
["heirloomSourceFilters"] = "Bitfield for which source filters are applied in the heirloom journal",
["transmogrifySourceFilters"] = "Bitfield for which source filters are applied in the wardrobe at the transmogrifier",
["wardrobeSourceFilters"] = "Bitfield for which source filters are applied in the wardrobe in the collection journal",
["transmogrifyShowCollected"] = "Whether to show collected transmogs in the at the transmogrifier",
["transmogrifyShowUncollected"] = "Whether to show uncollected transmogs in the at the transmogrifier",
["wardrobeShowCollected"] = "Whether to show collected transmogs in the wardrobe",
["wardrobeShowUncollected"] = "Whether to show uncollected transmogs in the wardrobe",
["petJournalTab"] = "Stores the last tab the pet journal was opened to",
["displayedRAFFriendInfo"] = "Stores whether we already told a recruited person about their new BattleTag friend",
["Outline"] = "Outline Mode",
["EmitterCombatRange"] = "Range to stop shoulder/weapon emissions during combat",
["NonEmitterCombatRange"] = "Range to stop shoulder/weapon emissions outside combat",
["advJournalLastOpened"] = "Last time the Adventure Journal opened",
["hideAdventureJournalAlerts"] = "Hide alerts shown on the Adventure Journal Microbutton",
["seenAsiaCharacterUpgradePopup"] = "Seen the free character upgrade popup (Asia)",
["showSpectatorTeamCircles"] = "Determines if the team color circles are visible while spectating or commentating a wargame",
["flashErrorMessageRepeats"] = "Flashes the center screen red error text if the same message is fired.",
["outdoorMinAltitudeDistance"] = "Minimum altitude distance for outdoor objects when you are also outdoors before the altitude difference marker displays",
["spellClutter"] = "Enables/Disables spell clutter",
["spellClutterRangeConstant"] = "How many yards before the priority is doubled (min 1.0)",
["spellClutterPlayerScalarMultiplier"] = "Increases number of effects on \"interesting\" targets multiplicatively (min 0.1)",
["spellClutterDefaultTargetScalar"] = "Starting target scalar value (min 0.1)",
["spellClutterPartySizeScalar"] = "Scales the targetScalar by how different the party size is from this (min 1)",
["spellClutterHostileScalar"] = "Scalar we apply to the hostile creature spells (min 0.001)",
["spellClutterMinSpellCount"] = "Min spells on a target before we apply clutter logic (min 0)",
["unitClutter"] = "Enables/Disables unit clutter",
["unitClutterInstancesOnly"] = "Whether or not to use unit clutter in instances only (0 or 1)",
["unitClutterPlayerThreshold"] = "The number of players that have to be nearby to trigger unit clutter",
["nameplateOverlapH"] = "Percentage amount for horizontal overlap of nameplates",
["nameplateOverlapV"] = "Percentage amount for vertical overlap of nameplates",
["TargetNearestUseOld"] = "Use pre-7.0 'nearest target' functionality",
["TargetPriorityIncludeBehind"] = "If set, include target's behind the player in priority target selection",
["TargetPriorityAllowAnyOnScreen"] = "If set, and no 100% correct target is available, allow selecting any valid in-range target (2 = also out-of-range)",
["TargetPriorityHoldHighlightDelay"] = "Delay in Milliseconds before priority target highlight starts when holding the button",
["TargetPriorityCombatLock"] = "1=Lock to in-combat targets when starting from an in-combat target. 2=Further restrict to in-combat with player.",
["TargetPriorityCombatLockHighlight"] = "1=Lock to in-combat targets when starting from an in-combat target. 2=Further restrict to in-combat with player. (while doing hold-to-target)",
["TargetPriorityPvp"] = "When in pvp, give higher priority to players and important pvp targets (2 = all pvp targets, 3 = players only)",
["TargetPriorityPvpLock"] = "Lock to important pvp targets when starting from a pvp target.",
["TargetPriorityPvpLockHighlight"] = "Lock to players when starting from a player target in pvp. (while doing hold-to-target)",
["TargetPriorityValueBank"] = "Selects the scoring values bank for calculating target priority order",
["ffxGlow"] = "full screen glow effect",
["PraiseTheSun"] = "",
["uiScale"] = "The current UI scale",
["useUiScale"] = "Whether or not the UI scale should be used",
["ObjectSelectionCircle"] = "",
["outlineMouseOverFadeDuration"] = "",
["outlineSelectionFadeDuration"] = "",
["bodyQuota"] = "Maximum number of componented bodies seen at once",
["GameObjForceMouseOver"] = "0=off 1=on",
["MaxObservedPetBattles"] = "Maximum number of observed pet battles",
["smoothUnitPhasing"] = "The client will try to smoothly switch between the same on model different phases.",
["smoothUnitPhasingDistThreshold"] = "Distance threshold to active smooth unit phasing.",
["smoothUnitPhasingUnseenPurgatoryTimeMs"] = "Time to keep unit displays in purgatory before letting go of them, if they were just unseen.",
["smoothUnitPhasingDestroyedPurgatoryTimeMs"] = "Time to keep unit displays in purgatory before letting go of them, if they were destroyed",
["smoothUnitPhasingActorPurgatoryTimeMs"] = "Time to keep client-actor displays in purgatory before letting go of them, if they were despawned",
["smoothUnitPhasingEnableAlive"] = "Use units that have not despawn yet if they match, in hopes the despawn message will come later.",
["smoothUnitPhasingAliveTimeoutMs"] = "Time to wait for an alive unit to get it's despawn message",
["smoothUnitPhasingVehicleExtraTimeoutMs"] = "Extra time to wait before releasing a vehicle, after it has smooth phased. This allows it's passengers to smooth phase as well.",
["SplineOpt"] = "toggles use of spline coll optimization[\"blockTrades\"] = Whether to automatically block trade requests",
["blockChannelInvites"] = "Whether to automatically block chat channel invites",
["autoLootDefault"] = "Automatically loot items when the loot window opens",
["autoLootRate"] = "Rate in milliseconds to tick auto loot",
["assistAttack"] = "Whether to start attacking after an assist",
["autoSelfCast"] = "Whether spells should automatically be cast on you if you don't have a valid target",
["stopAutoAttackOnTargetChange"] = "Whether to stop attacking when changing targets",
["showVKeyCastbarOnlyOnTarget"] = "",
["showVKeyCastbarSpellName"] = "",
["displaySpellActivationOverlays"] = "Whether to display Spell Activation Overlays (a.k.a. Spell Alerts)",
["lossOfControl"] = "Enables loss of control spell banner",
["lossOfControlFull"] = "Setting for Loss of Control - Full Loss",
["lossOfControlInterrupt"] = "Setting for Loss of Control - Interrupt",
["lossOfControlSilence"] = "Setting for Loss of Control - Silence",
["lossOfControlDisarm"] = "Setting for Loss of Control - Disarm",
["lossOfControlRoot"] = "Setting for Loss of Control - Root",
["minimapZoom"] = "The current outdoor minimap zoom level",
["minimapInsideZoom"] = "The current indoor minimap zoom level",
["showHonorAsExperience"] = "Show the honor bar as a regular experience bar in place of rep",
["showQuestTrackingTooltips"] = "Displays quest tracking information in unit and object tooltips",
["questLogCollapseHeaderFilter"] = "bit filed for saving off the state of the headers in Quest Log",
["autoQuestPopUps"] = "Saves current pop-ups for quests that are automatically acquired or completed.",
["questLogOpen"] = "Whether the quest log appears the side of the windowed map. ",
["showQuestObjectivesOnMap"] = "Shows quest POIs on the main map.",
["trackedQuests"] = "Internal cvar for saving automatically tracked quests in order",
["hardTrackedQuests"] = "Internal cvar for saving hard (user manually selected) tracked quests in order",
["trackedWorldQuests"] = "Internal cvar for saving tracked world quests",
["hardTrackedWorldQuests"] = "Internal cvar for saving hard tracked world quests",
["trackedAchievements"] = "Internal cvar for saving tracked achievements in order",
["lockedWorldMap"] = "Whether the world map is locked when sized down",
["worldMapOpacity"] = "Opacity for the world map when sized down",
["mapFade"] = "Whether to fade out the world map when moving",
["guildRewardsUsable"] = "Show usable guild rewards only",
["guildRewardsCategory"] = "Show category of guild rewards",
["friendsViewButtons"] = "Whether to show the friends list view buttons",
["friendsSmallView"] = "Whether to use smaller buttons in the friends list",
["nameplateResourceOnTarget"] = "Nameplate class resource overlay mode. 0=self, 1=target",
["showPartyPets"] = "Whether to show pets in the party UI",
["showArenaEnemyFrames"] = "Show arena enemy frames while in an Arena",
["showArenaEnemyCastbar"] = "Show the spell enemies are casting on the Arena Enemy frames",
["showArenaEnemyPets"] = "Show the enemy team's pets on the ArenaEnemy frames",
["fullSizeFocusFrame"] = "Increases the size of the focus frame to that of the target frame",
["useCompactPartyFrames"] = "Use the new raid frames for parties",
["showDispelDebuffs"] = "Show only Debuffs that the player can dispel. Only applies to raids.",
["showCastableBuffs"] = "Show only Buffs the player can cast. Only applies to raids.",
["noBuffDebuffFilterOnTarget"] = "Do not filter buffs or debuffs at all on targets",
["cameraSavedDistance"] = "",
["cameraSavedVehicleDistance"] = "",
["cameraSavedPetBattleDistance"] = "",
["cameraSavedPitch"] = "",
["raidOptionSortMode"] = "The way to sort raid frames",
["raidOptionKeepGroupsTogether"] = "The way to group raid frames",
["raidOptionLocked"] = "Whether the raid frames are locked",
["raidOptionDisplayPets"] = "Whether to display pets on the raid frames",
["raidOptionDisplayMainTankAndAssist"] = "Whether to display main tank and main assist units in the raid frames",
["raidOptionIsShown"] = "Whether the Raid Frames are shown",
["raidFramesDisplayAggroHighlight"] = "Whether to display aggro highlights on Raid Frames",
["raidFramesDisplayOnlyDispellableDebuffs"] = "Whether to display only dispellable debuffs on Raid Frames",
["raidFramesDisplayPowerBars"] = "Whether to display mana, rage, etc. on Raid Frames",
["raidFramesPosition"] = "Where the raid frames should be placed",
["raidFramesHeight"] = "The height of the individual raid frames",
["raidFramesWidth"] = "The width of the individual raid frames",
["raidFramesHealthText"] = "How to display health text on the raid frames",
["raidOptionShowBorders"] = "Displays borders around the raid frames.",
["raidFramesDisplayClassColor"] = "Colors raid frames with the class color",
["calendarShowWeeklyHolidays"] = "Whether weekly holidays should appear in the calendar",
["calendarShowDarkmoon"] = "Whether Darkmoon Faire holidays should appear in the calendar",
["calendarShowBattlegrounds"] = "Whether Battleground holidays should appear in the calendar",
["calendarShowLockouts"] = "Whether raid lockouts should appear in the calendar",
["calendarShowResets"] = "Whether raid resets should appear in the calendar",
["nameplateShowSelf"] = "",
["nameplateShowEnemies"] = "",
["nameplateShowEnemyMinions"] = "",
["nameplateShowEnemyPets"] = "",
["nameplateShowEnemyGuardians"] = "",
["nameplateShowEnemyTotems"] = "",
["nameplateShowEnemyMinus"] = "",
["nameplateShowFriends"] = "",
["nameplateShowFriendlyMinions"] = "",
["nameplateShowFriendlyPets"] = "",
["nameplateShowFriendlyGuardians"] = "",
["nameplateShowFriendlyTotems"] = "",
["nameplateShowAll"] = "",
["showBattlefieldMinimap"] = "Whether or not the battlefield minimap is shown",
["playerStatLeftDropdown"] = "The player stat selected in the left dropdown",
["playerStatRightDropdown"] = "The player stat selected in the right dropdown",
["talentPointsSpent"] = "The player has spent a talent point",
["guildRosterView"] = "The current guild roster display mode",
["currencyTokensUnused1"] = "Currency token types marked as unused.",
["currencyTokensUnused2"] = "Currency token types marked as unused.",
["currencyTokensBackpack1"] = "Currency token types shown on backpack.",
["currencyTokensBackpack2"] = "Currency token types shown on backpack.",
["currencyCategoriesCollapsed"] = "Internal CVar for tracking collapsed currency categories.",
["showTokenFrame"] = "The token UI has been shown",
["showTokenFrameHonor"] = "The token UI has shown Honor",
["threatWarning"] = "Whether or not to show threat warning UI (0 = off, 1 = in dungeons, 2 = in party/raid, 3 = always)",
["lfgSelectedRoles"] = "Stores what roles the player is willing to take on.",
["lfdCollapsedHeaders"] = "Stores which LFD headers are collapsed.",
["lfdSelectedDungeons"] = "Stores which LFD dungeons are selected.",
["pvpSelectedRoles"] = "Stores what roles the player will fulfill in a BG.",
["autoFilledMultiCastSlots"] = "Bitfield that saves whether multi-cast slots have been automatically filled.",
["minimapTrackedInfov2"] = "Stores the minimap tracking that was active last session.",
["minimapShapeshiftTracking"] = "Stores shapeshift-specific tracking spells that were active last session.",
["showTamers"] = "If enabled, pet battle icons will be shown on world maps",
["primaryProfessionsFilter"] = "If enabled, primary profession world quests icons will be shown on world maps",
["secondaryProfessionsFilter"] = "If enabled, secondary profession world quests icons will be shown on world maps",
["questPOI"] = "If enabled, the quest POI system will be used.",
["digSites"] = "If enabled, the archaeological dig site system will be used.",
["miniWorldMap"] = "Whether or not the world map has been toggled to smaller size",
["characterFrameCollapsed"] = "Whether or not the Character Frame has been collapsed to a smaller size",
["reputationsCollapsed"] = "List of reputation categories that have been collapsed in the Reputation tab",
["guildNewsFilter"] = "Stores the guild news filters",
["lfGuildSettings"] = "Bit field of Looking For Guild player settings",
["lfGuildComment"] = "Stores the player's Looking For Guild comment",
["activeCUFProfile"] = "The last active CUF Profile.",
["lastVoidStorageTutorial"] = "Stores the last void storage tutorial the player has accepted",
["lastGarrisonMissionTutorial"] = "Stores the last garrison mission tutorial the player has accepted",
["shipyardMissionTutorialFirst"] = "Stores whether the player has accepted the first mission tutorial",
["shipyardMissionTutorialBlockade"] = "Stores whether the player has accepted the first blockade mission tutorial",
["shipyardMissionTutorialAreaBuff"] = "Stores whether the player has accepted the first area buff mission tutorial",
["orderHallMissionTutorial"] = "Stores information about which order hall mission tutorials the player has seen",
["minimapShowQuestBlobs"] = "Stores whether to show the quest blobs on the minimap.",
["minimapShowArchBlobs"] = "Stores whether to show the quest blobs on the minimap.",