-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdvar_hash_list.txt
7026 lines (7026 loc) · 241 KB
/
dvar_hash_list.txt
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
AmmoBoxPickupTime,0xF9043B8D
BotCount,0xC4BFB171
ClickToContinue,0x69585093
GameDescription,0xA837A98B
HTTPD_CmdFence,0xDF607C29
HTTPD_Port,0x7C4C5C4F
HTTPD_StaticRoot,0xE1112F00
MapName,0xB78F06C4
MaxPlayerCount,0x7AF77B4F
ParallaxHUD,0x123C797B
ServerName,0xC29189CD
ServerPassword,0x321AAAFF
ShakeHUD,0xF096CC00
TestIntervalJitter,0x9348C120
UI_enabled,0x3DCBE2D1
UI_highlightScaledText,0x787FBE89
UI_safeAreaOverride,0xD22B1912
UI_showSafeArea,0x843CF7E1
ViewAngleOverride_cameraInputDeadTimeMs,0x7843B03C
ViewAngleOverride_cameraInputThreshold,0x6C1DF0A6
accelspeed,0xAD426684
actors_walkable,0xF4DAC541
addMapPackFlagsUserInfo,0x2DF7CB71
addfavourite,0x05DDED6B
adsZeroSpread,0x9C75F582
ai_ShowCanSeeChecks,0x4838403D
ai_ShowCanshootChecks,0xF92E348D
ai_accu_player_lateral_speed,0xDEFC967A
ai_accuracyDistScale,0xE927658D
ai_accuracy_attackerCountDecrease,0x3FBDF556
ai_accuracy_attackerCountMax,0xACF5B204
ai_adjustOffMeshNodes,0xA00C696C
ai_allowCachedConditions,0x1E4A2745
ai_allowFrameLimitedApi,0xE6043AE6
ai_allowLerpedCooldownTimers,0x24003400
ai_angularYawAccelRate,0x24B1E7FD
ai_angularYawDecelFactor,0xEB7A4BB1
ai_angularYawEnabled,0xD5D92418
ai_arrivalLookaheadDistance,0x0AC8E0D6
ai_avoidNavBoundaries,0xD4C0821E
ai_avoidOthersAtCloseDist,0x73331BD5
ai_awarenessEnabled,0x26569F0C
ai_badPathSpam,0x00650941
ai_clampToNavMeshEnabled,0x649407C7
ai_clientFacialCullDist,0xC536BF47
ai_codeGameskill,0x8531F992
ai_corpseCount,0xE9440137
ai_coverDistanceOffset,0x59A45EAB
ai_coverFlankCheckRad,0xDC0DFCF2
ai_coverFlankDistToCover,0x4CFC634D
ai_coverFlankMaxAngle,0x9ACBB308
ai_coverHeightOffset,0x9B4C8DF3
ai_coverScore_coverType,0xAA3D4E7B
ai_coverScore_dangerousNode,0x9D923AF2
ai_coverScore_distance,0x992AE8AB
ai_coverScore_engagement,0x6F62716F
ai_coverScore_flanking,0x511AFABC
ai_coverScore_nodeAngle,0x1A2F48FF
ai_coverScore_playerLos,0x224616A5
ai_coverScore_priority,0xE2CBF4E2
ai_coverScore_targetDir,0x41F82AC6
ai_coverScore_visibility,0x03C7DF3E
ai_coverSearchInterval,0xB1D6A100
ai_coverSpacingDistance,0x9F0F6EBB
ai_debugAccuracy,0x185401DC
ai_debugAnimDeltas,0xC1AD651D
ai_debugAnimScripted,0xAEC89CA6
ai_debugArrivals,0x4DAE26B9
ai_debugCodeBehaviorTree,0x794E817E
ai_debugCoverEntityNum,0xECCDFA2B
ai_debugCoverSelection,0x613F67BA
ai_debugCoverTool,0xB9B781BE
ai_debugEntIndex,0x6706135A
ai_debugEntLock,0xA3AE4D5F
ai_debugFindPath,0x0C20B63B
ai_debugFindPathDirect,0xE328A748
ai_debugFindPathLock,0x7BC3B622
ai_debugFindPathWidth,0xB8631509
ai_debugFlyingPath,0x5C2DFE7F
ai_debugGrenadeHintArc,0x065E5BE0
ai_debugMayMove,0x5B1FA859
ai_debugMeleeAttackSpots,0xA7527EE8
ai_debugTargets,0xD7E44DE3
ai_debugThreatSelection,0xF52CB62B
ai_debugTurnRate,0x51475628
ai_debugVolumeTool,0x162CCFBB
ai_debug_dynamic_nodes,0x3C71AD53
ai_disableSpawn,0xA60D2823
ai_doNotDamageTeammates,0x33BDCF3E
ai_dogMeleeHeight,0x9400497D
ai_dogMeleeRange,0x89E6AE83
ai_dogMeleeWidth,0xFE6DE0C8
ai_enableBadPlaces,0xFF492DCC
ai_eventDistBadPlace,0x1C688A74
ai_exitLookaheadDistance,0x7EEB7403
ai_findNavExternalFaces,0x9FD79E3B
ai_foliageIngoreDist,0x6C6ED33B
ai_foliageSeeThroughDist,0xFF2A0B2F
ai_friendlyFireBlockDuration,0xB492574E
ai_friendlySuppression,0x60B899F0
ai_friendlySuppressionDist,0x424B09E0
ai_generateNavmeshRegions,0x2F8A2A70
ai_instantNoSolidOnDeath,0x3147C3B0
ai_maxAttackerCount,0xD410858A
ai_meleeDamage,0x77329455
ai_meleeHeight,0x19848A3B
ai_meleeRange,0x458859C5
ai_meleeWidth,0xCBFD1C52
ai_moveOrientMode,0x7CEAE1AB
ai_navDisplay_Alpha,0x76DD21E0
ai_navDisplay_FontSize,0x56DEF028
ai_navDisplay_X,0xC71D7A64
ai_navDisplay_Y,0xED1FF4CD
ai_navDraw_DepthTest,0x0628431D
ai_navDraw_Height,0xDD3668C3
ai_navVolumeLayerIndex,0x82206CAE
ai_navVolume_Cave,0x7BE53401
ai_navVolume_fillCells,0x48B7ED8C
ai_navVolume_labelCells,0xE9BF5903
ai_navVolume_showCellBorders,0xDBCCB34A
ai_navVolume_showEdgeConnections,0x04CE3C71
ai_navVoume_colorCellsRandomly,0x23CEFFC2
ai_noDodge,0xEC9F4464
ai_pathChokePointCost,0xE959EC3E
ai_pathMomentum,0xE0E696A1
ai_pathNegotiationOverlapCost,0x7DC04794
ai_pathRandomPercent,0x92794465
ai_pathSuppressionEnabled,0x596D0657
ai_perfInfoSortType,0xCC8DD4AB
ai_playerFarAccuracy,0x2153EFEF
ai_playerFarRange,0x1797279F
ai_playerLOSHalfWidth,0xA272CED2
ai_playerNearAccuracy,0x14581D44
ai_playerNearRange,0xDE0155DE
ai_scaleSightUpdateLatency,0x1B3B2416
ai_secondaryThreats,0xCA79BA1F
ai_showClaimedNode,0x9FA4CB54
ai_showClearanceCeiling,0xAED9E8D2
ai_showCount,0x27D8D45A
ai_showCoverScore,0xF1202A74
ai_showDodge,0x1121209A
ai_showExternalFaceByIndex,0x4C7982B8
ai_showExternalFaceWithEdge,0xEF82AA58
ai_showExternalFaces,0xD03B29AE
ai_showLastKnownEnemyPos,0xEDCC1790
ai_showNavMemory,0x27CB4941
ai_showNavMesh,0x1A996AD7
ai_showNavMeshBadEdges,0x6E09C366
ai_showNavMeshRegions,0xA952E1F6
ai_showNavMeshSeeds,0x9C3D1ABF
ai_showNavMeshSilhouettes,0xDC1F7410
ai_showNavMeshTriggers,0xF8A1E5F8
ai_showNavPaths,0x473CB3BC
ai_showNavStats,0x7E249D21
ai_showNavVolume,0x7797694E
ai_showNavVolumeStats,0xFEDF9F1B
ai_showNearestNode,0xCE429309
ai_showNodes,0x72085654
ai_showNodesDist,0xCA5669B4
ai_showOffMeshNodes,0x6CE97742
ai_showPathFindNodes,0x33F6E188
ai_showPaths,0xBCCFF9BB
ai_showPerfInfo,0xE0E64F74
ai_showPotentialCoverLocations,0x2163B182
ai_showPotentialThreatDir,0xCE528D66
ai_showSuppression,0xDF31ADF2
ai_showVisData,0xE9094FED
ai_showVisDataDist,0x5D6A726D
ai_showVolume,0xF24D3823
ai_simplifyExternalEdges,0xD8946DC8
ai_slowdownMaxYawDiff,0x9AA6C06B
ai_slowdownMinRate,0xF3A87751
ai_slowdownMinYawDiff,0xB6A883E1
ai_slowdownRateBlendFactor,0xE668E0D1
ai_stumbleSightFOV,0xAEFCA6B4
ai_stumbleSightRange,0x54E3FCF6
ai_tacticalInfluencersDebug,0xC7DBB328
ai_tacticalInfluencersThreatDebug,0xDFAE9304
ai_testEdgeForCover,0xACCB7397
ai_testVertexForNearbyFaces,0x1D02D542
ai_threatUpdateInterval,0x38E0FA7A
ai_trim_path_zigzags,0x156BACEE
ai_useBetterLookahead,0xC46E1BCF
ai_useFacingTranslation,0x56B2C6B2
ai_useLeanRunAnimations,0xA4EC8F6B
ai_useTacticalInfluencers,0x64708860
ai_validateBehaviorTree,0x7E8FAAC6
ai_warnMissingNavVolume,0xEC745E23
ai_weaponCamoEnabled,0x412BAF55
aim_DebugTopDownAssist,0x259335A8
aim_accel_turnrate_debug,0x2A9B886B
aim_accel_turnrate_enabled,0xBD332101
aim_accel_turnrate_lerp,0x5736EA19
aim_aimAssistRangeScale,0xAD923E28
aim_alternate_lockon_deflection,0xBF79A032
aim_alternate_lockon_pitch_strength,0xFCB3A0D1
aim_alternate_lockon_region_height,0xBAB0A717
aim_alternate_lockon_region_width,0x6D6DA156
aim_alternate_lockon_strength,0x9071E970
aim_assist_min_target_distance,0x374765ED
aim_assist_script_disable,0xA41D52B9
aim_assist_sniperADS_lock_on,0xCB9F7C64
aim_autoAimRangeScale,0x1EE1D652
aim_autoaim_debug,0x38ABD93D
aim_autoaim_enabled,0xBF3874CB
aim_autoaim_lerp,0x044BEBB3
aim_autoaim_region_height,0xCE7D133A
aim_autoaim_region_width,0x4B1416D9
aim_autograpple_lerp,0x766EE401
aim_automelee_armblade_lunge_region_height,0x356D111E
aim_automelee_armblade_lunge_region_width,0xB93C8BE5
aim_automelee_debug,0x8E2E871A
aim_automelee_enabled,0xE0F7DDCC
aim_automelee_lerp,0xE43DFC22
aim_automelee_move_limit,0xEBABA042
aim_automelee_move_limit_angle,0xC68C370E
aim_automelee_move_limit_range,0xC76BE5C0
aim_automelee_region_height,0x77A541B9
aim_automelee_region_width,0x3573E63C
aim_input_graph_debug,0xC5868944
aim_input_graph_enabled,0x006E5D5E
aim_input_graph_index,0xF67E5695
aim_linkto_autorecenter_delay,0xF5476192
aim_linkto_autorecenter_rate,0x7CA6F3A7
aim_lockon_debug,0x113B77B5
aim_lockon_deflection,0x5778AEDD
aim_lockon_enabled,0xDDAA65C3
aim_lockon_height_change_strength,0xEB336404
aim_lockon_pitch_strength,0x3A8F15DA
aim_lockon_region_height,0xA3CBCA42
aim_lockon_region_width,0x9DE97FC1
aim_lockon_strength,0xDBF71783
aim_scale_view_axis,0x307FC20B
aim_slowdown_debug,0xFD4E6000
aim_slowdown_enabled,0xE3E477D2
aim_slowdown_pitch_scale,0x50951B38
aim_slowdown_pitch_scale_ads,0x9FC9DF13
aim_slowdown_region_extended_height,0x199AF425
aim_slowdown_region_extended_width,0xC264E4D0
aim_slowdown_region_height,0x0EA99CFF
aim_slowdown_region_width,0xE79F77FE
aim_slowdown_yaw_scale,0x1BECB05B
aim_slowdown_yaw_scale_ads,0x616F4764
aim_t7_assassinationmode_lerp,0xF9B3A596
aim_t7_strongautomelee_lerp,0x05E6F937
aim_t7_weakautomelee_lerp,0x9921384A
aim_target_actor_min_distance,0xDF535DD7
aim_target_aim_tag_fast_update_interval,0xB78219B0
aim_target_aim_tag_slow_update_interval,0x52AA4F35
aim_target_alternate_frustum_min_distance,0xA32F12C1
aim_target_closest_first,0xF9645E33
aim_target_fixed_actor_size,0x1CDAECF3
aim_target_frustum_expand_fast_updates,0x419AB5D4
aim_target_frustum_min_distance,0x501F280C
aim_target_ignore_team_checking,0x4E5ED4B2
aim_target_player_enabled,0x6C49B72E
aim_target_sentient_half_height,0xB1323A07
aim_target_sentient_radius,0x8E6724DE
aim_target_smp,0xB74EEAF1
aim_turnrate_pitch,0x91009E37
aim_turnrate_pitch_ads,0x739F9C90
aim_turnrate_yaw,0x2772CF8C
aim_turnrate_yaw_ads,0xA6F25917
aim_view_sensitivity_component,0x195F4850
aim_view_sensitivity_override,0xF03C1C37
airburstAdjustDistance,0x05AA5F7F
allClientDvarsEnabled,0xBFA02692
allCollectiblesUnlocked,0x04D97ECC
allEmblemsPurchased,0x11DBF526
allEmblemsUnlocked,0x92320D84
allItemsPurchased,0x4726D501
allItemsUnlocked,0x6A264969
all_players_are_connected,0x381E2656
allocTracker_log,0xC423BB83
allocTracker_print,0xCF04F518
allocTracker_printstack,0x2B174BC0
allocTracker_track,0x8B474374
allowAllNAT,0xA555095E
allowDLCWeaponsByOwnership,0xF23F36F4
allowGuestSplitScreenOnline,0x7345EB45
allowHost_matchesHostedRatio,0xB6D6518E
allowHost_matchesHostedStreak,0x2334D9BB
allowHost_matchesPlayedRatio,0x5DA5A526
allowHost_matchesPlayedStreak,0xDA179053
allowTaskManagerRSU,0xF8A48826
allow_weapon_switch_during_swimming,0xA4D158EA
amd_useShaderExtension,0x5C8A5A81
animScript_listAnims,0x9B71DE40
anim_debugSpeeds,0xE8084CB6
anim_deltas_debug,0x7585BA38
anim_intro,0xAA2ADC15
anim_visualization_enable,0x726006BF
animscript_debug,0x7CFBBCEB
animscript_xcam_debug,0x4ACE8587
arena_bonusStarStreak,0x8B0DE074
arena_defaultPlaylist,0x67B75F5E
arena_enableArenaChallenges,0x3C117287
arena_enableListenHosting,0x2AD07A2D
arena_giveBonusStar,0xD73225EB
arena_lobbyReloadSearchDelayMax,0x8BD627C9
arena_lobbyReloadSearchDelayMin,0xA6CB5377
arena_maintenance,0xD8C0635E
arena_maxPregameCryptoSeconds,0x29298810
arena_minHostSkillRange,0x699377FB
arena_minPlayTime,0xFEF47F7E
arena_minPregameCryptoSeconds,0x8DAA6906
arena_qosBrodenSkillFrequency,0x4AD0658B
arena_qosBrodenSkillStep,0x44474485
arena_qosSkillStart,0xF20A318D
arena_seasonOverride,0x95898DA2
arena_seasonVetChallengeWins,0xAF13F17F
arena_unfairTeamGap,0xE9B3974F
armblade_lunge_region_height,0xD7197D8E
armblade_lunge_region_width,0xC9413495
art_review,0x60086937
asm_animDeltaParamsThresh,0xC1259B6C
asm_codeLevel,0x14C2F25C
asm_debugAimLayer,0xC93E1BBC
asm_debugLevel,0x3BB10F6C
asm_debugPrimaryDeltaLayer,0x310E0E79
asm_debugShootLayer,0xE50D91E2
asm_disableTransitions,0xB7731845
asm_footMatching,0x0B864290
asm_useNetworkFrameDelta,0x424C02C7
assassination,0x1A1DC319
assassination_cinematic,0x4F835913
assassination_counter,0xF04E51B8
assassination_debug,0x8E94D089
assassination_debug_slowmo,0x2AF57B13
assassination_default,0x3600F70B
assassination_height_limit,0xD715E721
assassination_max_height_displacement,0x28478242
assassination_mode,0x288FF855
attachment_exclusion_0,0xB9890AEA
autoExecDemoConfig,0xEAF9E0A0
autojoin,0x23820314
balances_fakeFail,0xD7AD819A
balances_retry_delay,0x24C47FED
balances_retry_max,0xF8CE5F5A
banclient,0x929CFDC9
bandwidth_retry_interval,0x7182FA41
banuser,0xB116E8A5
beamDrawCurveVerts,0x1C3B6FB1
beamDrawNodes,0xFAE2159D
beamDrawSlackInfo,0xC80169FE
beamDrawWaveVerts,0xB786A3A3
beamKillBeam,0xA356A195
beamLaunchBeam,0x27301DDC
beamReset,0x1B799535
beast_blur_radius_inner,0x9257F38A
beast_blur_radius_outer,0xB543C62F
beast_blur_time_in,0x8AF9FA68
beast_blur_time_out,0x41AD8747
beast_jump_blur_amount,0xDACD29BE
behaviorTrackerVersionNumber,0xA495EB2C
beta_special,0x5B1CC757
betty_activation_delay,0x1BE8DF46
betty_damage_cylinder_height,0x396CE9E8
betty_damage_max,0xF5034FC6
betty_damage_min,0x9A5D7138
betty_damage_radius,0x897E4C7E
betty_detect_radius,0xA4DA71E8
betty_grace_period,0x6868065E
betty_jump_height_onground,0xE2407DC5
betty_jump_height_wall,0x6B85DB93
betty_jump_time,0xB4B2220E
betty_onground_angle_threshold,0xA72322B0
bgCachePrintValues,0x631ECAA9
bg_ads,0x261DF55B
bg_aimSpreadMoveSpeedThreshold,0x1F46370E
bg_allowPlayerRoleTemplateButtonOverrides,0xAE4FD982
bg_anim_blend_angle,0x667B2BC8
bg_anim_blend_anim1,0x298388C9
bg_anim_blend_anim2,0x4F860332
bg_anim_blend_force_time,0x3050CA68
bg_anim_blend_fudge_time_offset,0xBD8BB102
bg_anim_blend_ratio,0xE65A03CC
bg_anim_blend_set,0x6BE0F3B9
bg_anim_blend_speed_frac,0x69414BE3
bg_anim_blend_timing1a,0xAEDD4FCB
bg_anim_blend_timing1b,0x3CD5E090
bg_anim_blend_timing2a,0xA49041EE
bg_anim_blend_timing2b,0x7E8DC785
bg_anim_blend_turn_speed,0xA6A2E7EE
bg_anim_blend_turn_speed_max,0x79DD6A15
bg_anim_blend_use_dvar_timings,0xE6AF4830
bg_aqs,0x0D86C86C
bg_aqsStyle,0x7957C9CB
bg_arenaSlot,0x4CBD7C64
bg_blendTimeOverride,0x6B9A5DCB
bg_bobMax,0xE3B23E3E
bg_bobTransTime,0x65008925
bg_bobcycleResetThreshold,0x4984EA08
bg_bulletPenetrationTreatVoidsAsSolid,0x0C35ADF8
bg_chargeShotAutoDischargeDelay,0xEAB5145B
bg_chargeShotAutoFireDelay,0xCADCCA0B
bg_chargeShotCenterSpeedReductionPerBullet,0x7D011579
bg_chargeShotDamageIncreasePerBullet,0x9E642CB1
bg_chargeShotDischargeWhenQueueReachesMax,0x0D2EA0F7
bg_chargeShotExponentialAmmoPerChargeLevel,0xA752575F
bg_chargeShotMaxBulletQueueOnEMP,0x479A3C2F
bg_chargeShotMaxViewKick,0x5C65DA9A
bg_chargeShotMinCenterSpeed,0xCB5B3D4B
bg_chargeShotPenetrationMultiplier,0xBF97484B
bg_chargeShotUseOneAmmoForMultipleBullets,0x2166567A
bg_chargeShotViewKickIncreasePerBullet,0xA1F13E67
bg_counterMeleeTime,0xE93EE7E4
bg_debugNotifies,0xBCE349BF
bg_deferScriptMissileDetonation,0xEFC7F3E3
bg_disablePaintshopBaseIconTransform,0xAACD99B5
bg_disableWeaponPlantingGroundTrace,0xDFE1D8D8
bg_disableWeaponPlantingInWater,0xD8AAB8B2
bg_dog_swim_enabled,0x49840318
bg_dog_swim_water_max,0x2CBF0E4D
bg_dog_swim_water_min,0xA9D3CC43
bg_drawGrenadeInHand,0x3A72EAFB
bg_drawProximity,0x71BC1B9C
bg_enableIKActiveFix,0x4984C72D
bg_fallDamageMaxHeight,0xDB32034E
bg_fallDamageMinHeight,0x61B2A094
bg_foliagesnd_fastinterval,0x9E8B44A5
bg_foliagesnd_maxspeed,0x7B533C1F
bg_foliagesnd_minspeed,0x50AFFE09
bg_foliagesnd_resetinterval,0xE2E4D57E
bg_foliagesnd_slowinterval,0xA89D3FF4
bg_forceAnimOverrideTimerCheck,0x5A7EB80A
bg_forceDurationOverride,0xDE8E5014
bg_forceExplosiveBullets,0xCC9E0D40
bg_force_idle_scale,0x12BF38D6
bg_freeCamClipToHeliPatch,0x50AC0A7B
bg_friendlyFire,0x5801381E
bg_friendlyFireMode,0x20237D63
bg_friendlyfireDist,0x1152753A
bg_grappleRequiresEquippedWeapon,0x164EF89B
bg_gravity,0xFA698377
bg_grenadeMinimumThrowbackTime,0xEEF8AD7D
bg_gunXOffset,0x934C1BEC
bg_heavyWeaponsAlwaysPlayFirstRaise,0x62E98B5C
bg_isolateDamageFlash,0x53F53B85
bg_legYawCrouchTolerance,0xE5F4D5CD
bg_legYawProneTolerance,0xEAC033B5
bg_legYawTolerance,0xCA58796F
bg_limitGrenadeImpacts,0x58098D8B
bg_lowGravity,0x2CE26C7B
bg_maxGrenadeIndicatorSpeed,0xCA64FFD7
bg_maxWeaponAnimScale,0x33396F2E
bg_meleePreLungeTime,0xA204B216
bg_moonGravity,0x59F55972
bg_movingPlatformPitchScale,0x2B0CD4FC
bg_overridePlayerEmblemIcon,0xD1890599
bg_perksCacheTestOld,0xEB01449B
bg_plantInWaterDepth,0xB7662ACF
bg_playStandToCrouchAnims,0x33A77760
bg_playerAnimStanceAllowMovementInteruptTime,0x2B23C0BD
bg_proneSwingSpeed,0xF154C5F4
bg_prone_yawcap,0x55731035
bg_scriptCanDisableStances,0x6628CC47
bg_serverDelayDamageKickForPing,0x853E79C3
bg_shieldHitEncodeHeightVM,0xC0167447
bg_shieldHitEncodeHeightWorld,0x047D2E0C
bg_shieldHitEncodeWidthVM,0xA1290FE8
bg_shieldHitEncodeWidthWorld,0x178E5585
bg_slopeFrames,0x126A2C3E
bg_specialOffhandInventoryAllowBallSwitch,0xBCA66E78
bg_specialOffhandInventorySwitch,0x93FD9B98
bg_swingSpeed,0x96C29B24
bg_t7BlockMeleeUsageTime,0x7B1F60E9
bg_t7MeleeControlScheme,0x88824466
bg_t7MeleeHeightCheck,0xEF46B637
bg_t7MeleeQuadrantMaxAngle,0x3CDCAC07
bg_t7MeleeQuadrantMinAngle,0x1B30874D
bg_t7MeleeUseAssassinationState,0x85D118E0
bg_teleportAlignTime,0x613D2DD2
bg_ufospeedscale,0xF896E0E0
bg_ufoviewscale,0xB1CD4590
bg_useCharacterTable,0xBA76615F
bg_useClientDamageKick,0x2EC0446C
bg_useT7Melee,0xB989E939
bg_useThrowButtonForDetonatorGrenades,0x50AB282A
bg_vehicle_gravity,0x38FB5082
bg_vehicle_ground_max_normal,0xF55E2A90
bg_vehicle_ground_min_normal,0xDAF3EFE6
bg_vehicle_helicopter_dogfight_roll_control_scale,0x3F24F53D
bg_vehicle_helicopter_focus_target_control_leeway,0xF839D1E0
bg_vehicle_helicopter_focus_target_damping_angle,0x296C2E99
bg_vehicle_helicopter_focus_target_damping_exponent,0x9319D055
bg_vehicle_max_body_pitch,0x6F84F76E
bg_vehicle_max_body_roll,0x295A7965
bg_vehicle_max_pitch,0x883FD4C5
bg_vehicle_max_roll,0x4B1696AC
bg_vehicle_overclip,0x3145505C
bg_vehicle_pitch_track,0x39CC8FE6
bg_vehicle_placement_debug,0x56E247E5
bg_vehicle_plane_invert_pitch,0x458763B2
bg_vehicle_plane_jet_controls,0xE8BF865F
bg_vehicle_plane_turn_assist_decay_rate,0xFF9AA85E
bg_vehicle_roll_track,0x1B09DE41
bg_vehicle_slide_min_normal,0x859E9AB0
bg_vehicle_sphere_bounds_offset_z,0x5FE8E486
bg_vehicle_stepsize,0x1C258CA9
bg_vehicle_tangential_clip_max_scale,0x5FD88708
bg_vehicle_tangential_clip_vel_scale,0x740BF013
bg_vehicle_trace_offset,0x61721977
bg_viewBobAmplitudeDtp,0xD2490364
bg_viewBobAmplitudeDucked,0x8A0C55A4
bg_viewBobAmplitudeDuckedAds,0xF2E4BD4A
bg_viewBobAmplitudeJuke,0xB044B837
bg_viewBobAmplitudeJukeAds,0xE77643CB
bg_viewBobAmplitudeProne,0xD6BD56EE
bg_viewBobAmplitudeRoll,0xE3D6084D
bg_viewBobAmplitudeSlide,0xD1ABC503
bg_viewBobAmplitudeSprinting,0x73578A88
bg_viewBobAmplitudeStanding,0xA1DFFB54
bg_viewBobAmplitudeStandingAds,0x19EAB03A
bg_viewBobAmplitudeSwimming,0x2E28465B
bg_viewBobAmplitudeWallRun,0xA061C027
bg_viewKickDeflectTime,0xC8C38E44
bg_viewKickDeflectTimeAds,0x5445656A
bg_viewKickMax,0x891942F0
bg_viewKickMaxAds,0x00C4D3A6
bg_viewKickMin,0xF416B84E
bg_viewKickMinAds,0x4233452C
bg_viewKickRandom,0x3122CF1B
bg_viewKickRecoverTime,0x9C331151
bg_viewKickRecoverTimeAds,0x06A7C585
bg_viewKickScale,0x11CE8064
bg_viewKickScaleAds,0xEFE1E60A
bg_viewanglesDebug,0xDD1ED825
bg_vsmode_hud,0x4FD85C01
bg_warmode_version,0x70B61DF3
bg_waterGravity,0x4599A492
bg_weaponBobAmplitudeBase,0xE301C4B8
bg_weaponBobFrequencySwimming,0x1AEF2171
bg_weaponButtMeleeCharge,0x60E0ACF4
bg_weaponCompatibleIfSharedAmmo,0xC74C68F1
bg_weaponOffscreenReloadScale,0xAB9058F5
bg_weaponSubtractFrameTimeRemainder,0x20901EA6
bg_weaponSwitchHero,0x7A711B3B
bg_weaponSwitchHeroHoldTime,0x62E84BAF
bg_zm_dlc1_chargeShotMultipleBulletsForFullCharge,0x35E3FC4D
bg_zombiePlayerUsesUtilityClip,0xF8BF6A8C
bgcache_checksum_validation,0x738C7F7A
bgcache_checksum_validation_demo,0x059B4968
bgcache_disablewarninghints,0xB5011A39
bgcache_displaychecksum,0x280D7A7C
bgcache_loaddevitems,0xA7EA9466
bgcache_mark_used_assets,0xAE15986E
bgcache_skip_mychanges,0xB0CFB5E0
bind,0x7637DA58
bind2,0xDE68A10A
blackboxBandwidthLimited,0xDCCA11A6
blackboxHighVolumeProbability,0xF5962540
blackboxMode,0xCA25D684
blurpain,0x43C6E5C2
boostcheatBitchHKRatioCoef,0xA6E3DCDC
boostcheatBitchHKRatioMean,0x15045C68
boostcheatBitchHKRatioStddev,0xA5E31C37
boostcheatBitchKillTimestampsAnomalyCoef,0x53D33C9A
boostcheatBitchKillTimestampsAnomalyMean,0x51067B26
boostcheatBitchKillTimestampsAnomalyStddev,0x05E733E9
boostcheatBitchKillsRatioCoef,0x57E66B32
boostcheatBitchKillsRatioMean,0x97C35B0E
boostcheatBitchKillsRatioStddev,0x283D2A51
boostcheatBitchKillsTotalCoef,0xDC2ED239
boostcheatBitchKillsTotalMean,0x23D0D089
boostcheatBitchKillsTotalStddev,0xB8B3B1C2
boostcheatHeadshotsTotalCoef,0xB07E4089
boostcheatHeadshotsTotalMean,0xC04F3AD9
boostcheatHeadshotsTotalStddev,0xBA71E9B2
boostcheatIntercept,0xE696E7EB
boostcheatKillerXAnomalyCoef,0x464A855A
boostcheatKillerXAnomalyMean,0x173EB2E6
boostcheatKillerXAnomalyStddev,0xAB5753A9
boostcheatKillerYAnomalyCoef,0xDC7FD8FD
boostcheatKillerYAnomalyMean,0xCDEBF61D
boostcheatKillerYAnomalyStddev,0x980D7AF6
boostcheatMeanBitchLifetimeMillisecondsCoef,0xAC96CC48
boostcheatMeanBitchLifetimeMillisecondsMean,0xEE0357F4
boostcheatMeanBitchLifetimeMillisecondsStddev,0x65D77EC3
boostcheatMeanDistanceBitchTraveledCoef,0x1489935B
boostcheatMeanDistanceBitchTraveledMean,0x3AFF4433
boostcheatMeanDistanceBitchTraveledStddev,0x495F11D0
boostcheatMeanDistanceVictimTraveledCoef,0xE884A711
boostcheatMeanDistanceVictimTraveledMean,0x5983A1B1
boostcheatMeanDistanceVictimTraveledStddev,0x7DF776AA
boostcheatVictimXAnomalyCoef,0x39D884E7
boostcheatVictimXAnomalyMean,0xC3B33D8F
boostcheatVictimXAnomalyStddev,0x86D5C4BC
boostcheatVictimYAnomalyCoef,0x459AEC44
boostcheatVictimYAnomalyMean,0xF04D9B20
boostcheatVictimYAnomalyStddev,0x1CDF350F
bot_AllowAiming,0xB3A487E7
bot_AllowAttack,0x9B16C4C6
bot_AllowGrenades,0x92D61C07
bot_AllowHeroGadgets,0xC11FA9A9
bot_AllowKillstreaks,0x8C79349B
bot_AllowMelee,0xB8E006EA
bot_AllowMeleeCharge,0x2DF1D16A
bot_AllowMovement,0x6EB9C2A5
bot_AllowSprint,0xC824E112
bot_Debug,0x64665D14
bot_DebugX,0xD1D6F404
bot_DebugY,0xF7D96E6D
bot_DrawPerks,0xF0FFA1CC
bot_ForceCrouch,0x6437DE32
bot_ForceFire,0x8050513C
bot_ForceMelee,0x646B4B64
bot_ForceProne,0xB3003B3A
bot_ForceStand,0x8E0CF520
bot_Fov,0xBDC7C218
bot_FovAds,0x7C41DABE
bot_PitchSensitivity,0x694B8BDC
bot_PitchSpeed,0xB20031C8
bot_PitchSpeedAds,0xFE43B7EE
bot_PredictCorners,0x0E4A0BCC
bot_PressAttackBtn,0x87231514
bot_PressMeleeBtn,0x0A66A7F4
bot_SnapshotDebug,0xD6DDF3D4
bot_UseFriendNames,0x21B05980
bot_YawSensitivity,0x8C28C4A5
bot_YawSpeed,0x016E619D
bot_YawSpeedAds,0x6557DCE1
bot_difficulty,0x46B15B34
bot_enableWallrun,0xE88C0649
bot_enemies,0xDAB2C0C5
bot_friends,0x80BE881A
bot_maxAllies,0xB07B923D
bot_maxAxis,0xBC3FA82C
bot_maxFree,0xE421D1B1
bot_maxJumpDistance,0x6DE4C3AE
bot_maxMantleHeight,0xEF239337
bot_maxWaterMantleHeight,0xF2969364
bot_recordButtons,0x5348214F
bot_recordGoal,0xC390E419
bot_recordGoalInfo,0xB0F21A55
bot_recordHealth,0x992A7962
bot_recordPathing,0x9010DD73
bot_recordPlayerFlags,0x19A9B044
bot_recordThreat,0xDE2F7EB0
bot_supported,0xBADECFEF
bot_traverseUnderwater,0xDC87DC66
bow_launcher_bounce_max_scale,0x91886599
bow_launcher_charge_snap_percent,0x48DC2C5A
bow_launcher_minimum_reticle_scale,0xBC32CBB1
bow_launcher_rebound_scale,0xCB43AF71
breadcrumbDistanceImportance,0x2A503E31
breadcrumbThreshold,0x282AC387
breadcrumbTimeImportance,0xAC6CD127
bullet_enterWater,0x6A3813BB
bullet_penetrationEnabled,0xF76C718A
bullet_penetrationMinFxDist,0x8EDF64FF
bullet_ricochetBaseChance,0x3BCC81E4
bulletrange,0x59FC97D4
cameraShakeRemoteHelo_Angles,0x87315E71
cameraShakeRemoteHelo_Freqs,0xB89C9A2E
cameraShakeRemoteHelo_SpeedRange,0x05F289B9
cameraShakeRemoteMissile_Angles,0x8D9368AF
cameraShakeRemoteMissile_Freqs,0x673E2CC8
cameraShakeRemoteMissile_SpeedRange,0x414280FB
cg_BallisticArc_BeginAlpha,0x32FFAB69
cg_BallisticArc_BeginWidth,0xEBA60C45
cg_BallisticArc_Debug,0x0EA0BF6D
cg_BallisticArc_DrawDelay,0x65825857
cg_BallisticArc_EndAlpha,0xBA51C7D9
cg_BallisticArc_EndWidth,0xCC82F3D5
cg_BallisticArc_ForceHitIndicator,0x422B8ABF
cg_BallisticArc_ImpactRadius,0x65449F68
cg_BallisticArc_MaxBounces,0xE6F348FD
cg_BallisticArc_MinBounces,0x0DA31A47
cg_BallisticArc_Offset,0xE6C07681
cg_BallisticArc_PerpStep,0x00D56665
cg_BallisticArc_VerticalOffset,0xF1B3460F
cg_DrawOnScreenFriendlyAI,0x23F04B50
cg_DrawOnlyFriendlyPlayerNamesWhileInVehicle,0x25455A52
cg_DrawPlayerNamesWhileInVehicle,0xA660E9A3
cg_DrawRemoteVehiclePlayerNames,0x155937E7
cg_EnableAdaptiveSkinLodScale,0xF029C02B
cg_InfraredFadeoutTime,0x00782D36
cg_ScoresColor_Free,0x95B3E0ED
cg_ScoresColor_Gamertag_0,0xE0235192
cg_ScoresColor_Gamertag_1,0x0625CBFB
cg_ScoresColor_Gamertag_2,0x941E5CC0
cg_ScoresColor_Gamertag_3,0xBA20D729
cg_ScoresColor_Spectator,0xD00083FA
cg_ScoresPing_Interval,0xABF27851
cg_ScoresPing_MaxBars,0x77E431E6
cg_VelocityArrow_MaxSegmentLength,0xB985E844
cg_VelocityArrow_MinSegmentLength,0xDB730B1A
cg_VelocityArrow_RateOfChange,0x376AAC28
cg_WeaponButtAttackerCameraShakeDuration,0xF1E89169
cg_WeaponButtAttackerHitCameraShakeScale,0x1C709A4A
cg_WeaponButtAttackerMissCameraShakeScale,0x794F46B5
cg_WeaponButtVictimCameraShakeDuration,0x2434014E
cg_WeaponButtVictimCameraShakeScale,0xC1516ADC
cg_adsZScaleMax,0x2FE83502
cg_adsZoomToggleStyle,0x6586EC8C
cg_aggressiveCullRadius,0xBE28BB08
cg_ai_useServerAnims,0x3789C06D
cg_allPlayerNamesVisible,0xAC843D82
cg_altDofTrace,0x21E35DBD
cg_animInfoCornerOffset,0xB0DF45B3
cg_animMonitorEnt,0xD9B627D8
cg_animMonitorFilter,0xBD19D88F
cg_artilleryKillCamBackDist,0x205EA5C4
cg_artilleryKillCamFov,0xD85AC2B6
cg_artilleryKillCamGroundBackDist,0x334FD395
cg_artilleryKillCamGroundUpDist,0x43192A7F
cg_artilleryKillCamUpDist,0x12E447FE
cg_artilleryKillCamWallOutDist,0xE94F5007
cg_artilleryKillCamWallSideDist,0xDC8B0494
cg_assignRandomPaintshops,0xBA8BD4D7
cg_bloodLimit,0x21EB817B
cg_bloodLimitMsec,0x70E9F783
cg_blur_time,0x67C5411F
cg_brass,0x0139C139
cg_cameraRollOverride,0x2C7DE57E
cg_cameraSpikeEnemyColor,0x1BECA85A
cg_cameraSpikeHighlightBrightness,0x2F78EF50
cg_cameraUnderwaterLens,0x667F45A0
cg_cameraVehicleExitTweenTime,0x654094A5
cg_cameraVzoomToggleTime,0xC638F0D1
cg_cameraWaterClip,0x59AE326E
cg_canSeeFriendlyFrustumExpand,0x851FCA16
cg_canSeeFriendlyFrustumMinDistance,0x3C5DDC8B
cg_canSeeFriendlyFrustumUpdateInterval,0x3F21313A
cg_cancelChargeShotTime,0xC469D4F7
cg_centertime,0xD08F83B2
cg_chatHeight,0x4EBC943D
cg_cinematicFullscreen,0x51DE327A
cg_circularMinimapWhenSquare,0x509F3AF7
cg_clampFrameInterpolation,0x3F1BAA10
cg_clanNameDebug,0xE46C88B0
cg_clientSideGlassTouch,0x3D1B80A3
cg_combatRobotKillCamDistFromEyes,0x60C744C5
cg_combatRobotKillCamForwardDist,0xA908775A
cg_combatRobotKillCamFov,0x7D3015A4
cg_combatRobotKillCamSideDist,0xA37DD076
cg_combatRobotKillCamUpDist,0xDCDD1560
cg_combatRobotKillMinDistFromTarget,0x86D59A29
cg_connectionIconSize,0xD7E8AF26
cg_constantSizeHeadIcons,0x9B5B39D7
cg_corpseHighlightFadeTime,0xA6F6DCAF
cg_cropFactor,0x53B683D5
cg_crosshairAlpha,0xC3640CB6
cg_crosshairAlphaMin,0x6DDE5052
cg_crosshairDynamic,0xD8A7B175
cg_crosshairEnemyColor,0xE913F5BB
cg_crosshairVehicleSentientCheck,0xE729EE7C
cg_cullBulletAngle,0x8A7AD00F
cg_cullBullets,0x49D3BFC5
cg_cursorHints,0xF97E5AEA
cg_damageIndicatorAngle,0xCA90AE55
cg_damageIndicatorMinDelay,0xCC64881D
cg_damageIndicatorShowAfterDeathTime,0x5FD66328
cg_deathCamAboveWater,0xD3B11B49
cg_deathScreenFadeInTime,0x721AB004
cg_deathScreenFadeOutTime,0xC73D8EDD
cg_debugCacheEnabled,0x2DBF33CA
cg_debugCinematicCamera,0xD0FE1EF7
cg_debugDrawSafeAreas,0x13A08BB8
cg_debugDynamicLadderSight,0x7A996909
cg_debugEllipsesOffset,0x54424883
cg_debugEntCount,0xBBCCF5F3
cg_debugEvents,0x27D1115C
cg_debugFace,0xC1DCA704
cg_debugInfoCornerOffset,0x000D0FB9
cg_debugMounting,0xF56E6562
cg_debugPosition,0x58D67D4E
cg_debugTargetEntNumber,0xC651C158
cg_debugThirdPersonCamera,0xE2078A7C
cg_debug_exploders,0x67B1C6B0
cg_debug_overlay_viewport,0xADCEE80B
cg_debug_triggers,0xE6EB869D
cg_debugevents,0x27D1115C
cg_debugposition,0x58D67D4E
cg_descriptiveText,0x02899C1D
cg_destructibleKillCamCloseXYDist,0xA65A28CA
cg_destructibleKillCamCloseZDist,0x1BC25573
cg_destructibleKillCamFarBlur,0x86CDD1D7
cg_destructibleKillCamFarBlurDist,0x47922E33
cg_destructibleKillCamFarBlurStart,0x40F11395
cg_destructibleKillCamFov,0xA923429A
cg_destructibleKillCamNearBlur,0x7DE2567C
cg_destructibleKillCamNearBlurEnd,0x04CAE74B
cg_destructibleKillCamNearBlurStart,0x8C99EE68
cg_destructibleKillCamRegularHeight,0x3B6C9A4A
cg_destructibleKillCamZIncrease,0x4698F81D
cg_destructible_radius_damage_enabled,0x9C242DC9
cg_development,0xF021FEF9
cg_disableearthquake,0x09CB364D
cg_disableplayernames,0x38147FB3
cg_dogKillCamDistFromEyes,0xF784E227
cg_dogKillCamForwardDist,0x36F9DF14
cg_dogKillCamFov,0x9DC6E3EA
cg_dogKillCamSideDist,0x790ED3CC
cg_dogKillCamUpDist,0x4B25CB0A
cg_dogKillMinDistFromTarget,0x57ED9CE7
cg_draw2D,0x0F9AB11E
cg_draw2d,0x0F9AB11E
cg_drawAnimAttachTags,0x2D5D459B
cg_drawArtFPS,0x2128497C
cg_drawBonesEntNum,0x0568CAE0
cg_drawBreathHint,0xD900E011
cg_drawBudgets,0xD67F1336
cg_drawBulletHitPosNormal,0x5759815E
cg_drawBulletPenetration,0xDC42B2B3
cg_drawCrosshair,0x4BEE36C0
cg_drawCrosshairCooker,0x5D0E9299
cg_drawCrosshairNames,0x6FBC4B30
cg_drawCrosshairNamesPosX,0xDD72D062
cg_drawCrosshairNamesPosY,0x03754ACB
cg_drawDecalSort,0x026C2C87
cg_drawFPS,0xEDB317B1
cg_drawFPSLabels,0xDD1E2E30
cg_drawFPSScale,0x7FCDA919
cg_drawFramePerformanceWarnings,0x3DB9BD40
cg_drawFriendlyNames,0xD12E3F73
cg_drawGun,0xCB969102
cg_drawHoldBreathHint,0x1233F2C6
cg_drawIdentifierDebug,0xF8DC804A
cg_drawJobsPerf,0x38F8C6A5
cg_drawLagometer,0x1B5F914A
cg_drawLightingDebugText,0x06946238
cg_drawMantleHint,0x407877F2
cg_drawMaterial,0x6FE9CB8F
cg_drawMaterialImageName,0x2E3301A3
cg_drawMaterialImageNum,0xAA00AF46
cg_drawMemoryInfo,0x56D1C811
cg_drawMinimap,0x125EC5B1
cg_drawModelAxis,0xCA8EADB8
cg_drawNetTiming,0x6C25BDD3
cg_drawPerformanceSweepInfo,0x054CCD52
cg_drawPerformanceWarnings,0xD96BC34D
cg_drawPhotosensorOverlay,0x75D29252
cg_drawRenderFrame,0xE0E3E78B
cg_drawRumbleDebug,0x0DA978E4
cg_drawScriptUsage,0x8BE28F32
cg_drawShellshock,0x794CE924
cg_drawSnapshot,0x538960E8
cg_drawSpectatorMessages,0x14591D63
cg_drawTalk,0xE6BCF04E
cg_drawThroughWalls,0x1C65EA6E
cg_drawVersion,0xECC59810
cg_drawVersionX,0x5B49DB08
cg_drawVersionY,0x814C5571
cg_drawVisibleCounts,0xA095065E
cg_drawWVisDebug,0x17AF36D8
cg_drawWaterTrail,0x328D5483
cg_drawXCamInfo,0x964AB96D
cg_drawYouInKillCamAsWaypoint,0xBC1DBB18
cg_drawfps,0xEDB317B1
cg_drawgun,0xCB969102
cg_drawlagometer,0x1B5F914A
cg_drawpaused,0xF9A83122
cg_drawrumbledebug,0x0DA978E4
cg_droneKillCamBackDist,0x0F2FCB74
cg_droneKillCamUpDist,0x63A195EE
cg_dumpAnims,0x44579F1E
cg_enableHelicopterNoCullLodOut,0xE4F3D9F2
cg_enemyNameFadeIn,0xE305E548
cg_enemyNameFadeOut,0x2284F6A7
cg_errorDecay,0x1905B416
cg_explosiveKillCamBackDist,0x445C4615
cg_explosiveKillCamGroundBackDist,0x33724B28
cg_explosiveKillCamGroundUpDist,0xEE5F509A
cg_explosiveKillCamStopDecelDist,0x3254BEA3
cg_explosiveKillCamStopDist,0x6389339C
cg_explosiveKillCamUpDist,0x1C9AB8FF
cg_explosiveKillCamWallOutDist,0xBC88D4F4
cg_explosiveKillCamWallSideDist,0x35260B59
cg_fakefireWizbyChance,0x15C84A9A
cg_fastApe,0x982107B4
cg_fastFakeApe,0x7E19B83D
cg_fast_lui,0xEA335F0B
cg_firstPersonTracerChance,0xB3645558
cg_flareVisionSetFadeDuration,0xA678EBE4
cg_flipTeamVisuals,0xC8AEEC97
cg_focalDistance,0x6C655324
cg_focalDistanceChangeSpeed,0xA4164CD5
cg_focalLength,0xC4195CA1
cg_footprints,0x90990C86
cg_footprintsDebug,0xA62889FF
cg_footprintsDistortWater,0x0DC96748
cg_footsteps,0x149E01BB
cg_forceEmp,0x98FBAC83
cg_forceInfrared,0x4DBC0028
cg_forceInvalidPaintshops,0x3198F3B7
cg_forceNoCullLodOut,0xEF14E27D
cg_fov,0x64197457
cg_fovExtraCam,0x427F1538
cg_fovMin,0x616585ED
cg_fovScale,0x2E068B1B
cg_fov_comp_max,0x7D71E570
cg_fov_default,0xF03677A1
cg_fov_default_nocomp,0xBA8DCFD8
cg_fov_default_thirdperson,0x8F8FEA18
cg_friendlyNameFadeIn,0xCED95485
cg_friendlyNameFadeOut,0xBDE06584
cg_fstop,0x7B3E01DC
cg_fullscreenFinalKillcam,0x65595518
cg_gameBoldMessageWidth,0x6459F292
cg_gameMessageWidth,0xD1B3A59B
cg_gamemessageiconscale,0x3FAD43BC
cg_gun_fovcomp_x,0xFD264FF4
cg_gun_fovcomp_y,0x2328CA5D
cg_gun_fovcomp_z,0x492B44C6
cg_gun_move_f,0x1B759ED7
cg_gun_move_minspeed,0x1F4E68CA
cg_gun_move_r,0x23440EA3
cg_gun_move_rate,0x854F85D1
cg_gun_move_u,0x4946890C
cg_gun_ofs_f,0xF5F4E184
cg_gun_ofs_r,0xBE129E70
cg_gun_ofs_u,0xC823F74F
cg_gun_pitch,0x237D92AB
cg_gun_roll,0x07E904E2
cg_gun_rot_minspeed,0x65392618
cg_gun_rot_p,0x07B7C313
cg_gun_rot_r,0xBBB2CE41
cg_gun_rot_rate,0x9DEF00A3
cg_gun_rot_y,0xB1A17562
cg_gun_x,0x517B70FD
cg_gun_y,0x2B78F694
cg_gun_yaw,0xCA789AB0
cg_gun_z,0x9D8065CF
cg_headIconMinScreenRadius,0xCDA058F3
cg_healthPerBar,0x6C36BFF0
cg_heliKillCamFarBlur,0x85A2C785
cg_heliKillCamFarBlurDist,0x332BC275
cg_heliKillCamFarBlurStart,0x983BC557
cg_heliKillCamFov,0xF8E45CEC
cg_heliKillCamNearBlur,0x97BCCC56
cg_heliKillCamNearBlurEnd,0x7596AD8D
cg_heliKillCamNearBlurStart,0x0F7DDFBE
cg_hideHighDetail,0xF68ED311
cg_hideViewmodelInUFOMode,0xF873FECE
cg_hintFadeTime,0x13E98E48
cg_hitmarkerFrameSpacing,0x708CF53D
cg_hudChatIntermissionPosition,0x1917135A
cg_hudChatPosition,0x30030D72
cg_hudDamageDirectionalIconTime,0x23321C66
cg_hudDamageIconHeight,0x6C9D30AC
cg_hudDamageIconInScope,0x640C37F4
cg_hudDamageIconOffset,0xFDF8B478
cg_hudDamageIconTime,0x948527C6
cg_hudDamageIconWidth,0x35289937
cg_hudFriendlyIndicatorHeight,0x77B10D16
cg_hudFriendlyIndicatorWidth,0x7D6E737D
cg_hudGrenadeIconEnabledFlash,0x7C3F8C09
cg_hudGrenadeIconHeight,0x3299F7DF
cg_hudGrenadeIconInScope,0x48AAA28D
cg_hudGrenadeIconMaxHeight,0x02F6B7D1
cg_hudGrenadeIconMaxRangeFlash,0xE413D5EB
cg_hudGrenadeIconMaxRangeFrag,0x2933260F
cg_hudGrenadeIconMaxScale,0x5D263FD6
cg_hudGrenadeIconMaxScaleDistance,0x37FD7CBB
cg_hudGrenadeIconMinScale,0x4B526CD0
cg_hudGrenadeIconMinScaleDistance,0x1CC8B711
cg_hudGrenadeIconOffset,0xBB86255B
cg_hudGrenadeIconWidth,0x697DAD5E
cg_hudGrenadeIndicatorFadeUp,0xEA467585
cg_hudGrenadeIndicatorStartColor,0x9D353B55
cg_hudGrenadeIndicatorTargetColor,0x72763818
cg_hudGrenadePointerHeight,0xCE5A439D
cg_hudGrenadePointerPivot,0x5C85CC70
cg_hudGrenadePointerPulseFreq,0x28E43F2D
cg_hudGrenadePointerPulseMax,0xF0A412A3
cg_hudGrenadePointerPulseMin,0xB340078D
cg_hudGrenadePointerWidth,0x89D14E68
cg_hudLegacySplitscreenScale,0xC77297C2
cg_hudMapBorderWidth,0xBD7DBD29
cg_hudMapFriendlyHeight,0x0BAD28DD
cg_hudMapFriendlyWidth,0x9DEF04A8
cg_hudMapPlayerHeight,0x2722180F
cg_hudMapPlayerWidth,0xB13E35CE
cg_hudMapRadarLineThickness,0xC49963B9
cg_hudProneY,0x46C2D8DE
cg_hudSayPosition,0xC35EBB77
cg_hudSplitscreenBannerScoreboardScale,0x5927A913
cg_hudSplitscreenCompassElementScale,0xA996C2CB
cg_hudSplitscreenCompassScale,0xD6642D99
cg_hudSplitscreenOffsetsUseScale,0x75D74B8C
cg_hudSplitscreenScoreboardScale,0xA8AE70FD
cg_hudSplitscreenStanceScale,0xEDEE3B7F
cg_hudStanceHintPrints,0x99492D1E
cg_hudVotePosition,0x2348A14C
cg_infraredBlur,0x319397AE
cg_infraredBlurTime,0x9917F601
cg_infraredFriendlies,0x02ED54E8
cg_infraredHighlightOffset,0xBBEE1B76
cg_infraredHighlightScale,0xA710DE8B
cg_infraredUseDefaultMaterial,0x8E272FE6
cg_ingnoreValidateWeaponOnDeath,0x3F8E2B71
cg_inputLagTestAvgThreshold,0x0551A5AF
cg_inputLagTestMaxThreshold,0x352DA931
cg_inputLagTestNumRuns,0xC39EBB84
cg_inputLagTestTimePerRun,0x1B354015
cg_invalidCmdHintBlinkInterval,0x867A2757
cg_invalidCmdHintDelay,0x304401EB
cg_invalidCmdHintDuration,0x118286DE