-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCvarlist.txt
1842 lines (1842 loc) · 204 KB
/
Cvarlist.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
cvar list
--------------
_autosave : cmd : : Autosave
_autosavedangerous : cmd : : AutoSaveDangerous
_bugreporter_restart : cmd : : Restarts bug reporter .dll
_resetgamestats : cmd : : Erases current game stats and writes out a blank stats file
_restart : cmd : : Shutdown and restart the engine.
achievement_debug : 0 : , "sv", "cheat", "rep" : Turn on achievement debug msgs.
addip : cmd : : Add an IP address to the ban list.
adsp_alley_min : 122 : :
adsp_courtyard_min : 126 : :
adsp_debug : 0 : , "a" :
adsp_door_height : 112 : :
adsp_duct_min : 106 : :
adsp_hall_min : 110 : :
adsp_low_ceiling : 108 : :
adsp_opencourtyard_min : 126 : :
adsp_openspace_min : 130 : :
adsp_openstreet_min : 118 : :
adsp_openwall_min : 130 : :
adsp_room_min : 102 : :
adsp_street_min : 118 : :
adsp_tunnel_min : 114 : :
adsp_wall_height : 128 : :
ai_auto_contact_solver : 1 : , "sv" :
ai_block_damage : 0 : , "sv" :
ai_debug_assault : 0 : , "sv" :
ai_debug_avoidancebounds : 0 : , "sv" :
ai_debug_directnavprobe : 0 : , "sv" :
ai_debug_doors : 0 : , "sv" :
ai_debug_dyninteractions : 0 : , "sv" : Debug the NPC dynamic interaction system.
ai_debug_efficiency : 0 : , "sv" :
ai_debug_enemies : 0 : , "sv" :
ai_debug_expressions : 0 : , "sv" : Show random expression decisions for NPCs.
ai_debug_follow : 0 : , "sv" :
ai_debug_loners : 0 : , "sv" :
ai_debug_looktargets : 0 : , "sv" :
ai_debug_los : 0 : , "sv", "cheat" : NPC Line-Of-Sight debug mode. If 1, solid entities that block NPC LOC will be highlighted with white bounding boxes. If 2, it'll show non-solid entities that would do it if they were solid.
ai_debug_nav : 0 : , "sv" :
ai_debug_node_connect : cmd : : Debug the attempted connection between two nodes
ai_debug_ragdoll_magnets : 0 : , "sv" :
ai_debug_shoot_positions : 0 : , "sv", "cheat", "rep" :
ai_debug_speech : 0 : , "sv" :
ai_debug_squads : 0 : , "sv" :
ai_debug_think_ticks : 0 : , "sv" :
ai_debugscriptconditions : 0 : , "sv" :
ai_default_efficient : 0 : , "sv" :
ai_drawbattlelines : 0 : , "sv", "cheat" :
ai_drop_hint : cmd : : Drop an ai_hint at the player's current eye position.
ai_dump_hints : cmd : :
ai_efficiency_override : 0 : , "sv" :
ai_enable_fear_behavior : 1 : , "sv" :
ai_expression_frametime : 0 : , "sv" : Maximum frametime to still play background expressions.
ai_expression_optimization : 0 : , "sv" : Disable npc background expressions when you can't see them.
ai_fear_player_dist : 720 : , "sv" :
ai_find_lateral_cover : 1 : , "sv" :
ai_find_lateral_los : 1 : , "sv" :
ai_follow_use_points : 1 : , "sv" :
ai_follow_use_points_when_moving : 1 : , "sv" :
ai_force_serverside_ragdoll : 0 : , "sv" :
ai_frametime_limit : 50 : , "sv" : frametime limit for min efficiency AIE_NORMAL (in sec's).
ai_lead_time : 0 : , "sv" :
ai_LOS_mode : 0 : , "sv", "rep" :
ai_moveprobe_debug : 0 : , "sv" :
ai_moveprobe_jump_debug : 0 : , "sv" :
ai_moveprobe_usetracelist : 0 : , "sv" :
ai_navigator_generate_spikes : 0 : , "sv" :
ai_navigator_generate_spikes_strength : 8 : , "sv" :
ai_no_local_paths : 0 : , "sv" :
ai_no_node_cache : 0 : , "sv" :
ai_no_select_box : 0 : , "sv" :
ai_no_steer : 0 : , "sv" :
ai_no_talk_delay : 0 : , "sv" :
ai_norebuildgraph : 0 : , "sv" :
ai_path_adjust_speed_on_immediate_turns : 1 : , "sv" :
ai_path_insert_pause_at_est_end : 1 : , "sv" :
ai_path_insert_pause_at_obstruction : 1 : , "sv" :
ai_post_frame_navigation : 0 : , "sv" :
ai_radial_max_link_dist : 512 : , "sv" :
ai_reaction_delay_alert : 0 : , "sv" :
ai_reaction_delay_idle : 0 : , "sv" :
ai_rebalance_thinks : 1 : , "sv" :
ai_report_task_timings_on_limit : 0 : , "a", "sv" :
ai_sequence_debug : 0 : , "sv" :
ai_set_move_height_epsilon : cmd : : Set how high AI bumps up ground walkers when checking steps
ai_setupbones_debug : 0 : , "sv" : Shows that bones that are setup every think
ai_shot_bias : 1 : , "sv" :
ai_shot_bias_max : 1 : , "sv", "rep" :
ai_shot_bias_min : -1 : , "sv", "rep" :
ai_shot_stats : 0 : , "sv" :
ai_shot_stats_term : 1000 : , "sv" :
ai_show_hull_attacks : 0 : , "sv" :
ai_show_think_tolerance : 0 : , "sv" :
ai_simulate_task_overtime : 0 : , "sv" :
ai_spread_cone_focus_time : 0 : , "sv" :
ai_spread_defocused_cone_multiplier : 3 : , "sv" :
ai_spread_pattern_focus_time : 0 : , "sv" :
ai_strong_optimizations : 0 : , "sv" :
ai_strong_optimizations_no_checkstand : 0 : , "sv" :
ai_task_pre_script : 0 : , "sv" :
ai_test_moveprobe_ignoresmall : 0 : , "sv" :
ai_think_limit_label : 0 : , "a", "sv" :
ai_use_clipped_paths : 1 : , "sv" :
ai_use_efficiency : 1 : , "sv" :
ai_use_frame_think_limits : 1 : , "sv" :
ai_use_think_optimizations : 1 : , "sv" :
ai_use_visibility_cache : 1 : , "sv" :
ai_vehicle_avoidance : 1 : , "sv", "cheat" :
air_density : cmd : : Changes the density of air for drag computations.
alias : cmd : : Alias a command.
ammo_338mag_max : 30 : , "sv", "rep" :
ammo_357sig_max : 52 : , "sv", "rep" :
ammo_45acp_max : 100 : , "sv", "rep" :
ammo_50AE_max : 35 : , "sv", "rep" :
ammo_556mm_box_max : 200 : , "sv", "rep" :
ammo_556mm_max : 90 : , "sv", "rep" :
ammo_57mm_max : 100 : , "sv", "rep" :
ammo_762mm_max : 90 : , "sv", "rep" :
ammo_9mm_max : 120 : , "sv", "rep" :
ammo_buckshot_max : 32 : , "sv", "rep" :
ammo_flashbang_max : 2 : , "sv", "rep" :
ammo_hegrenade_max : 1 : , "sv", "rep" :
ammo_smokegrenade_max : 1 : , "sv", "rep" :
anim_3wayblend : 1 : , "sv", "rep" : Toggle the 3-way animation blending code.
askconnect_accept : cmd : : Accept a redirect request by the server.
async_allow_held_files : 1 : : Allow AsyncBegin/EndRead()
async_mode : 0 : : Set the async filesystem mode (0 = async, 1 = synchronous)
async_resume : cmd : :
async_serialize : 0 : : Force async reads to serialize for profiling
async_simulate_delay : 0 : : Simulate a delay of up to a set msec per file operation
async_suspend : cmd : :
audit_save_in_memory : cmd : : Audit the memory usage and files in the save-to-memory system
autoaim_max_deflect : 0 : , "sv" :
autoaim_max_dist : 2160 : , "sv" :
autobuy : cmd : : Attempt to purchase items with the order listed in cl_autobuy
autosave : cmd : : Autosave
autosavedangerous : cmd : : AutoSaveDangerous
autosavedangerousissafe : cmd : :
banid : cmd : : Add a user ID to the ban list.
banip : cmd : : Add an IP address to the ban list.
bench_end : cmd : : Ends gathering of info.
bench_start : cmd : : Starts gathering of info. Arguments: filename to write results into
bench_upload : cmd : : Uploads most recent benchmark stats to the Valve servers.
benchframe : cmd : : Takes a snapshot of a particular frame in a time demo.
bind : cmd : : Bind a key.
bind_mac : cmd : : Bind this key but only on Mac, not win32
BindToggle : cmd : : Performs a bind <key> 'increment var <cvar> 0 1 1'
bloodspray : cmd : : blood
bot_add : cmd : : bot_add <t|ct> <type> <difficulty> <name> - Adds a bot matching the given criteria.
bot_add_ct : cmd : : bot_add_ct <type> <difficulty> <name> - Adds a Counter-Terrorist bot matching the given criteria.
bot_add_t : cmd : : bot_add_t <type> <difficulty> <name> - Adds a terrorist bot matching the given criteria.
bot_all_weapons : cmd : : Allows the bots to use all weapons
bot_allow_grenades : 1 : , "sv", "rep" : If nonzero, bots may use grenades.
bot_allow_machine_guns : 1 : , "sv", "rep" : If nonzero, bots may use the machine gun.
bot_allow_pistols : 1 : , "sv", "rep" : If nonzero, bots may use pistols.
bot_allow_rifles : 1 : , "sv", "rep" : If nonzero, bots may use rifles.
bot_allow_rogues : 1 : , "sv", "rep" : If nonzero, bots may occasionally go 'rogue'. Rogue bots do not obey radio commands, nor pursue scenario goals.
bot_allow_shotguns : 1 : , "sv", "rep" : If nonzero, bots may use shotguns.
bot_allow_snipers : 1 : , "sv", "rep" : If nonzero, bots may use sniper rifles.
bot_allow_sub_machine_guns : 1 : , "sv", "rep" : If nonzero, bots may use sub-machine guns.
bot_auto_follow : 0 : , "sv", "rep" : If nonzero, bots with high co-op may automatically follow a nearby human player.
bot_auto_vacate : 1 : , "sv", "rep" : If nonzero, bots will automatically leave to make room for human players.
bot_chatter : 0 : , "sv", "rep" : Control how bots talk. Allowed values: 'off', 'radio', 'minimal', or 'normal'.
bot_crouch : 0 : , "sv", "cheat" :
bot_debug : 0 : , "sv", "cheat", "rep" : For internal testing purposes.
bot_debug_target : 0 : , "sv", "cheat", "rep" : For internal testing purposes.
bot_defer_to_human : 0 : , "sv", "rep" : If nonzero and there is a human on the team, the bots will not do the scenario tasks.
bot_difficulty : 1 : , "sv", "rep" : Defines the skill of bots joining the game. Values are: 0=easy, 1=normal, 2=hard, 3=expert.
bot_dont_shoot : 0 : , "sv", "cheat", "rep" : If nonzero, bots will not fire weapons (for debugging).
bot_eco_limit : 2000 : , "sv", "rep" : If nonzero, bots will not buy if their money falls below this amount.
bot_flipout : 0 : , "sv", "cheat", "rep" : If nonzero, bots use no CPU for AI. Instead, they run around randomly.
bot_freeze : 0 : , "sv", "cheat" :
bot_goto_mark : cmd : : Sends a bot to the selected nav area (useful for testing navigation meshes)
bot_join_after_player : 1 : , "sv", "rep" : If nonzero, bots wait until a player joins before entering the game.
bot_join_delay : 0 : , "sv" : Prevents bots from joining the server for this many seconds after a map change.
bot_join_team : 0 : , "sv", "rep" : Determines the team bots will join into. Allowed values: 'any', 'T', or 'CT'.
bot_kick : cmd : : bot_kick <all> <t|ct> <type> <difficulty> <name> - Kicks a specific bot, or all bots, matching the given criteria.
bot_kill : cmd : : bot_kill <all> <t|ct> <type> <difficulty> <name> - Kills a specific bot, or all bots, matching the given criteria.
bot_knives_only : cmd : : Restricts the bots to only using knives
bot_loadout : 0 : , "sv", "cheat" : bots are given these items at round start
bot_mimic : 0 : , "sv" : Bot uses usercmd of player by index.
bot_mimic_yaw_offset : 180 : , "sv", "cheat" :
bot_pistols_only : cmd : : Restricts the bots to only using pistols
bot_prefix : 0 : , "sv", "rep" : This string is prefixed to the name of all bots that join the game. <difficulty> will be replaced with the bot's difficulty. <weaponclass> will be replaced with the bot's desired weapon class. <skill> will be replaced with a 0-100 representation of the bot's skill.
bot_profile_db : 0 : , "sv", "rep" : The filename from which bot profiles will be read.
bot_quota : 0 : , "sv", "nf", "rep" : Determines the total number of bots in the game.
bot_quota_mode : 0 : , "sv", "rep" : Determines the type of quota. Allowed values: 'normal', 'fill', and 'match'. If 'fill', the server will adjust bots to keep N players in the game, where N is bot_quota. If 'match', the server will maintain a 1:N ratio of humans to bots, where N is bot_quota.
bot_randombuy : 0 : , "sv", "cheat" : should bots ignore their prefered weapons and just buy weapons at random?
bot_show_battlefront : 0 : , "sv", "cheat" : Show areas where rushing players will initially meet.
bot_show_nav : 0 : , "sv", "cheat", "rep" : For internal testing purposes.
bot_show_occupy_time : 0 : , "sv", "cheat" : Show when each nav area can first be reached by each team.
bot_snipers_only : cmd : : Restricts the bots to only using sniper rifles
bot_stop : 0 : , "sv", "cheat", "rep" : If nonzero, immediately stops all bot processing.
bot_traceview : 0 : , "sv", "cheat", "rep" : For internal testing purposes.
bot_walk : 0 : , "sv", "rep" : If nonzero, bots can only walk, not run.
bot_zombie : 0 : , "sv", "cheat", "rep" : If nonzero, bots will stay in idle mode and not attack.
box : cmd : : Draw a debug box.
breakable_disable_gib_limit : 0 : , "sv" :
breakable_multiplayer : 1 : , "sv" :
buddha : cmd : : Toggle. Player takes damage but won't die. (Shows red cross when health is zero)
budget_averages_window : 30 : , "a" : number of frames to look at when figuring out average frametimes
budget_background_alpha : 128 : , "a" : how translucent the budget panel is
budget_bargraph_background_alpha : 128 : , "a" : how translucent the budget panel is
budget_bargraph_range_ms : 16 : , "a" : budget bargraph range in milliseconds
budget_history_numsamplesvisible : 100 : , "a" : number of samples to draw in the budget history window. The lower the better as far as rendering overhead of the budget panel
budget_history_range_ms : 66 : , "a" : budget history range in milliseconds
budget_panel_bottom_of_history_fraction : 0 : , "a" : number between 0 and 1
budget_panel_height : 384 : , "a" : height in pixels of the budget panel
budget_panel_width : 512 : , "a" : width in pixels of the budget panel
budget_panel_x : 0 : , "a" : number of pixels from the left side of the game screen to draw the budget panel
budget_panel_y : 50 : , "a" : number of pixels from the top side of the game screen to draw the budget panel
budget_peaks_window : 30 : , "a" : number of frames to look at when figuring out peak frametimes
budget_show_averages : 0 : , "a" : enable/disable averages in the budget panel
budget_show_history : 1 : , "a" : turn history graph off and on. . good to turn off on low end
budget_show_peaks : 1 : , "a" : enable/disable peaks in the budget panel
budget_toggle_group : cmd : : Turn a budget group on/off
bug : cmd : : Show/hide the bug reporting UI.
bug_swap : cmd : : Automatically swaps the current weapon for the bug bait and back again.
bugreporter_includebsp : 1 : : Include .bsp for internal bug submissions.
bugreporter_uploadasync : 0 : , "a" : Upload attachments asynchronously
buildcubemaps : cmd : : Rebuild cubemaps.
building_cubemaps : 0 : :
cache_print : cmd : : cache_print [section] Print out contents of cache memory.
cache_print_lru : cmd : : cache_print_lru [section] Print out contents of cache memory.
cache_print_summary : cmd : : cache_print_summary [section] Print out a summary contents of cache memory.
callvote : cmd : : Start a vote on an issue.
cast_hull : cmd : : Tests hull collision detection
cast_ray : cmd : : Tests collision detection
ch_createairboat : cmd : : Spawn airboat in front of the player.
ch_createjeep : cmd : : Spawn jeep in front of the player.
changelevel : cmd : : Change server to the specified map
changelevel2 : cmd : : Transition to the specified map in single player
changelevel_next : cmd : : Immediately changes to the next map in the map rotation for the server.
cl_allowdownload : 1 : , "a" : Client downloads customization files
cl_allowupload : 1 : , "a" : Client uploads customization files
cl_clock_correction : 1 : , "cheat" : Enable/disable clock correction on the client.
cl_clock_correction_adjustment_max_amount : 200 : , "cheat" : Sets the maximum number of milliseconds per second it is allowed to correct the client clock. It will only correct this amount if the difference between the client and server clock is equal to or larger than cl_clock_correction_adjustment_max_offset.
cl_clock_correction_adjustment_max_offset : 90 : , "cheat" : As the clock offset goes from cl_clock_correction_adjustment_min_offset to this value (in milliseconds), it moves towards applying cl_clock_correction_adjustment_max_amount of adjustment. That way, the response is small when the offset is small.
cl_clock_correction_adjustment_min_offset : 10 : , "cheat" : If the clock offset is less than this amount (in milliseconds), then no clock correction is applied.
cl_clock_correction_force_server_tick : 999 : , "cheat" : Force clock correction to match the server tick + this offset (-999 disables it).
cl_clock_showdebuginfo : 0 : , "cheat" : Show debugging info about the clock drift.
cl_clockdrift_max_ms : 150 : , "cheat" : Maximum number of milliseconds the clock is allowed to drift before the client snaps its clock to the server's.
cl_clockdrift_max_ms_threadmode : 0 : , "cheat" : Maximum number of milliseconds the clock is allowed to drift before the client snaps its clock to the server's.
cl_cmdrate : 30 : , "a", "user" : Max number of command packets sent to server per second
cl_debug_player_perf : 0 : :
cl_downloadfilter : 0 : , "a" : Determines which files can be downloaded from the server (all, none, nosounds, mapsonly)
cl_entityreport : 0 : , "cheat" : For debugging, draw entity states to console
cl_entityreport_sorted : 0 : , "cheat" : For debugging, draw entity states to console in sorted order. [0 = disabled, 1 = average, 2 = current, 3 = peak
cl_flushentitypacket : 0 : , "cheat" : For debugging. Force the engine to flush an entity packet.
cl_forcepreload : 0 : , "a" : Whether we should force preloading.
cl_fullupdate : cmd : : Forces the server to send a full update packet
cl_ignorepackets : 0 : , "cheat" : Force client to ignore packets (for debugging).
cl_language : 0 : , "user" : Language (from HKCU\Software\Valve\Steam\Language)
cl_localnetworkbackdoor : 1 : : Enable network optimizations for single player games.
cl_logofile : 0 : , "a" : Spraypoint logo decal.
cl_playback_screenshots : 0 : : Allows the client to playback screenshot and jpeg commands in demos.
cl_precacheinfo : cmd : : Show precache info (client).
cl_resend : 6 : : Delay in seconds before the client will resend the 'connect' attempt
cl_screenshotname : 0 : : Custom Screenshot name
cl_show_connectionless_packet_warnings : 0 : : Show console messages about ignored connectionless packets on the client.
cl_showdemooverlay : 0 : : How often to flash demo recording/playback overlay (0 - disable overlay, -1 - show always)
cl_showents : cmd : : Dump entity list to console.
cl_showevents : 0 : , "cheat" : Print event firing info in the console
cl_showpluginmessages : 0 : , "a" : Allow plugins to display messages to you
cl_soundfile : 0 : , "a" : Jingle sound file.
cl_timeout : 30 : , "a" : After this many seconds without receiving a packet from the server, the client will disconnect itself
cl_updaterate : 20 : , "a", "user" : Number of packets per second of updates you are requesting from the server
cl_view : cmd : : Set the view entity index.
cl_voice_filter : 0 : : Filter voice by name substring
clear : cmd : : Clear all console output.
clear_debug_overlays : cmd : : clears debug overlays
clientport : 27005 : : Host game client port
closecaption : 0 : , "a", "user" : Enable close captioning.
cmd : cmd : : Forward command to server.
collision_shake_amp : 0 : , "sv" :
collision_shake_freq : 0 : , "sv" :
collision_shake_time : 0 : , "sv" :
collision_test : cmd : : Tests collision system
colorcorrectionui : cmd : : Show/hide the color correction tools UI.
commentary : 0 : , "sv" : Desired commentary mode state.
commentary_available : 0 : , "sv" : Automatically set by the game when a commentary file is available for the current map.
commentary_cvarsnotchanging : cmd : :
commentary_finishnode : cmd : :
con_drawnotify : 1 : : Disables drawing of notification area (for taking screenshots).
con_enable : 0 : , "a" : Allows the console to be activated.
con_filter_enable : 0 : : Filters console output based on the setting of con_filter_text. 1 filters completely, 2 displays filtered text brighter than other text.
con_filter_text : 0 : : Text with which to filter console spew. Set con_filter_enable 1 or 2 to activate.
con_filter_text_out : 0 : : Text with which to filter OUT of console spew. Set con_filter_enable 1 or 2 to activate.
con_logfile : 0 : : Console output gets written to this file
con_notifytime : 8 : : How long to display recent console text to the upper part of the game window
con_nprint_bgalpha : 50 : : Con_NPrint background alpha.
con_nprint_bgborder : 5 : : Con_NPrint border size.
con_timestamp : 0 : : Prefix console.log entries with timestamps
con_trace : 0 : : Print console text to low level printout.
connect : cmd : : Connect to specified server.
contimes : 8 : : Number of console lines to overlay for debugging.
coop : 0 : , "nf" : Cooperative play.
cpu_frequency_monitoring : 0 : : Set CPU frequency monitoring interval in seconds. Zero means disabled.
create_flashlight : cmd : :
CreatePredictionError : cmd : : Create a prediction error
creditsdone : cmd : :
cs_make_vip : cmd : : Marks a player as the VIP
cs_ShowStateTransitions : -2 : , "sv", "cheat" : cs_ShowStateTransitions <ent index or -1 for all>. Show player state transitions.
cvarlist : cmd : : Show the list of convars/concommands.
datacachesize : 256 : : Size in MB.
dbghist_addline : cmd : : Add a line to the debug history. Format: <category id> <line>
dbghist_dump : cmd : : Dump the debug history to the console. Format: <category id> Categories: 0: Entity I/O 1: AI Decisions 2: Scene Print 3: Alyx Blind 4: Log of damage done to player
deathmatch : 1 : , "nf" : Running a deathmatch server.
debug_materialmodifycontrol : 0 : , "sv" :
debug_physimpact : 0 : , "sv" :
debug_touchlinks : 0 : , "sv" : Spew touch link activity
debugsystemui : cmd : : Show/hide the debug system UI.
decalfrequency : 10 : , "sv", "nf" :
demo_avellimit : 2000 : : Angular velocity limit before eyes considered snapped for demo playback.
demo_debug : 0 : : Demo debug info.
demo_fastforwardfinalspeed : 20 : : Go this fast when starting to hold FF button.
demo_fastforwardramptime : 5 : : How many seconds it takes to get to full FF speed.
demo_fastforwardstartspeed : 2 : : Go this fast when starting to hold FF button.
demo_gototick : cmd : : Skips to a tick in demo.
demo_interplimit : 4000 : : How much origin velocity before it's considered to have 'teleported' causing interpolation to reset.
demo_interpolateview : 1 : : Do view interpolation during dem playback.
demo_legacy_rollback : 1 : : Use legacy view interpolation rollback amount in demo playback.
demo_pause : cmd : : Pauses demo playback.
demo_pauseatservertick : 0 : : Pauses demo playback at server tick
demo_quitafterplayback : 0 : : Quits game after demo playback.
demo_recordcommands : 1 : , "cheat" : Record commands typed at console into .dem files.
demo_resume : cmd : : Resumes demo playback.
demo_setendtick : cmd : : Sets end demo playback tick. Set to 0 to disable.
demo_timescale : cmd : : Sets demo replay speed.
demo_togglepause : cmd : : Toggles demo playback.
demolist : cmd : : Print demo sequence list.
demos : cmd : : Demo demo file sequence.
demoui : cmd : : Show/hide the demo player UI.
demoui2 : cmd : : Show/hide the advanced demo player UI (demoui2).
+demoui2 : cmd : : Bring the advanced demo player UI (demoui2) to foreground.
-demoui2 : cmd : : Send the advanced demo player UI (demoui2) to background.
developer : 0 : : Set developer message level
devshots_nextmap : cmd : : Used by the devshots system to go to the next map in the devshots maplist.
devshots_screenshot : cmd : : Used by the -makedevshots system to take a screenshot. For taking your own screenshots, use the 'screenshot' command instead.
differences : cmd : : Show all convars which are not at their default values.
disconnect : cmd : : Disconnect game from server.
disp_dynamic : 0 : :
dispcoll_drawplane : 0 : , "sv" :
displaysoundlist : 0 : , "sv" :
download_debug : 0 : , "norecord" :
drawcross : cmd : : Draws a cross at the given location Arguments: x y z
drawline : cmd : : Draws line between two 3D Points. Green if no collision Red is collides with something Arguments: x1 y1 z1 x2 y2 z2
dsp_automatic : 0 : , "demo" :
dsp_db_min : 80 : , "demo" :
dsp_db_mixdrop : 0 : , "demo" :
dsp_dist_max : 1440 : , "cheat", "demo" :
dsp_dist_min : 0 : , "cheat", "demo" :
dsp_enhance_stereo : 0 : , "a" :
dsp_facingaway : 0 : , "demo" :
dsp_mix_max : 0 : , "demo" :
dsp_mix_min : 0 : , "demo" :
dsp_off : 0 : , "cheat" :
dsp_player : 0 : , "demo", "server_can_execute" :
dsp_reload : cmd : :
dsp_room : 0 : , "demo" :
dsp_slow_cpu : 0 : , "a", "demo" :
dsp_spatial : 40 : , "demo" :
dsp_speaker : 50 : , "demo" :
dsp_vol_2ch : 1 : , "demo" :
dsp_vol_4ch : 0 : , "demo" :
dsp_vol_5ch : 0 : , "demo" :
dsp_volume : 1 : , "a", "demo" :
dsp_water : 14 : , "demo" :
dt_ShowPartialChangeEnts : 0 : : (SP only) - show entities that were copied using small optimized lists (FL_EDICT_PARTIAL_CHANGE).
dt_UsePartialChangeEnts : 1 : : (SP only) - enable FL_EDICT_PARTIAL_CHANGE optimization.
dti_flush : cmd : : Write out the datatable instrumentation files (you must run with -dti for this to work).
dtwarning : 0 : : Print data table warnings?
dtwatchclass : 0 : : Watch all fields encoded with this table.
dtwatchent : -1 : : Watch this entities data table encoding.
dtwatchvar : 0 : : Watch the named variable.
dump_entity_sizes : cmd : : Print sizeof(entclass)
dump_globals : cmd : : Dump all global entities/states
dump_panels : cmd : : Dump Panel Tree
dump_x360_cfg : cmd : : Dump X360 config files to disk
dump_x360_saves : cmd : : Dump X360 save games to disk
dumpentityfactories : cmd : : Lists all entity factory names.
dumpeventqueue : cmd : : Dump the contents of the Entity I/O event queue to the console.
dumpgamestringtable : cmd : : Dump the contents of the game string table to the console.
dumplongticks : cmd : : Enables generating minidumps on long ticks.
dumpsavedir : cmd : : List the contents of the save directory in memory
dumpstringtables : cmd : : Print string tables to console.
echo : cmd : : Echo text to console.
enable_debug_overlays : 1 : , "sv", "cheat" : Enable rendering of debug overlays
endmovie : cmd : : Stop recording movie frames.
endround : cmd : : End the current round.
engine_no_focus_sleep : 50 : , "a" :
ent_absbox : cmd : : Displays the total bounding box for the given entity(s) in green. Some entites will also display entity specific overlays. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_attachments : cmd : : Displays the attachment points on an entity. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_autoaim : cmd : : Displays the entity's autoaim radius. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_bbox : cmd : : Displays the movement bounding box for the given entity(ies) in orange. Some entites will also display entity specific overlays. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_cancelpendingentfires : cmd : : Cancels all ent_fire created outputs that are currently waiting for their delay to expire.
ent_create : cmd : : Creates an entity of the given type where the player is looking. Additional parameters can be passed in in the form: ent_create <entity name> <param 1 name> <param 1> <param 2 name> <param 2>...<param N name> <param N>
ent_debugkeys : 0 : , "sv" :
ent_dump : cmd : : Usage: ent_dump <entity name>
ent_fire : cmd : : Usage: ent_fire <target> [action] [value] [delay]
ent_info : cmd : : Usage: ent_info <class name>
ent_keyvalue : cmd : : Applies the comma delimited key=value pairs to the entity with the given Hammer ID. Format: ent_keyvalue <entity id> <key1> <value1> <key2> <value2> ... <keyN> <valueN>
ent_messages : cmd : : Toggles input/output message display for the selected entity(ies). The name of the entity will be displayed as well as any messages that it sends or receives. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_messages_draw : 0 : , "sv", "cheat" : Visualizes all entity input/output activity.
ent_name : cmd : :
ent_orient : cmd : : Orient the specified entity to match the player's angles. By default, only orients target entity's YAW. Use the 'allangles' option to orient on all axis. Format: ent_orient <entity name> <optional: allangles>
ent_pause : cmd : : Toggles pausing of input/output message processing for entities. When turned on processing of all message will stop. Any messages displayed with 'ent_messages' will stop fading and be displayed indefinitely. To step through the messages one by one use 'ent_step'.
ent_pivot : cmd : : Displays the pivot for the given entity(ies). (y=up=green, z=forward=blue, x=left=red). Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_rbox : cmd : : Displays the total bounding box for the given entity(s) in green. Some entites will also display entity specific overlays. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_remove : cmd : : Removes the given entity(s) Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_remove_all : cmd : : Removes all entities of the specified type Arguments: {entity_name} / {class_name}
ent_rotate : cmd : : Rotates an entity by a specified # of degrees
ent_setname : cmd : : Sets the targetname of the given entity(s) Arguments: {new entity name} {entity_name} / {class_name} / no argument picks what player is looking at
ent_show_response_criteria : cmd : : Print, to the console, an entity's current criteria set used to select responses. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_step : cmd : : When 'ent_pause' is set this will step through one waiting input / output message at a time.
ent_teleport : cmd : : Teleport the specified entity to where the player is looking. Format: ent_teleport <entity name>
ent_text : cmd : : Displays text debugging information about the given entity(ies) on top of the entity (See Overlay Text) Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
ent_viewoffset : cmd : : Displays the eye position for the given entity(ies) in red. Arguments: {entity_name} / {class_name} / no argument picks what player is looking at
envmap : cmd : :
escape : cmd : : Escape key pressed.
exec : cmd : : Execute script file.
exit : cmd : : Exit the engine.
explode : cmd : : Kills the player with explosive damage
explodevector : cmd : : Kills a player applying an explosive force. Usage: explodevector <player> <x value> <y value> <z value>
fadein : cmd : : fadein {time r g b}: Fades the screen in from black or from the specified color over the given number of seconds.
fadeout : cmd : : fadeout {time r g b}: Fades the screen to black or to the specified color over the given number of seconds.
fast_fogvolume : 0 : :
filesystem_buffer_size : 0 : : Size of per file buffers. 0 for none
filesystem_max_stdio_read : 16 : :
filesystem_native : 1 : : Use native FS or STDIO
filesystem_report_buffered_io : 0 : :
filesystem_unbuffered_io : 1 : :
filesystem_use_overlapped_io : 1 : :
find : cmd : : Find concommands with the specified string in their name/help text.
find_ent : cmd : : Find and list all entities with classnames or targetnames that contain the specified substring. Format: find_ent <substring>
find_ent_index : cmd : : Display data for entity matching specified index. Format: find_ent_index <index>
findflags : cmd : : Find concommands by flags.
fire_absorbrate : 3 : , "sv" :
fire_dmgbase : 1 : , "sv" :
fire_dmginterval : 1 : , "sv" :
fire_dmgscale : 0 : , "sv" :
fire_extabsorb : 5 : , "sv" :
fire_extscale : 12 : , "sv" :
fire_growthrate : 1 : , "sv" :
fire_heatscale : 1 : , "sv" :
fire_incomingheatscale : 0 : , "sv" :
fire_maxabsorb : 50 : , "sv" :
firetarget : cmd : :
fish_dormant : 0 : , "sv", "cheat", "rep" : Turns off interactive fish behavior. Fish become immobile and unresponsive.
flex_expression : 0 : , "sv" :
flex_looktime : 5 : , "sv" :
flex_maxawaytime : 1 : , "sv" :
flex_maxplayertime : 7 : , "sv" :
flex_minawaytime : 0 : , "sv" :
flex_minplayertime : 5 : , "sv" :
flex_talk : 0 : , "sv" :
flush : cmd : : Flush unlocked cache memory.
flush_locked : cmd : : Flush unlocked and locked cache memory.
fog_enable_water_fog : 1 : , "cheat" :
fogui : cmd : : Show/hide fog control UI.
fov : cmd : : Change players FOV
fps_max : 300 : : Frame rate limiter, cannot be set while connected to a server.
free_pass_peek_debug : 0 : , "sv" :
fs_monitor_read_from_pack : 0 : : 0:Off, 1:Any, 2:Sync only
fs_printopenfiles : cmd : : Show all files currently opened by the engine.
fs_report_sync_opens : 0 : : 0:Off, 1:Always, 2:Not during load
fs_warning_level : cmd : : Set the filesystem warning level.
fs_warning_mode : 0 : : 0:Off, 1:Warn main thread, 2:Warn other threads
func_break_max_pieces : 15 : , "a", "sv", "rep" :
func_break_reduction_factor : 0 : , "sv" :
func_breakdmg_bullet : 0 : , "sv" :
func_breakdmg_club : 1 : , "sv" :
func_breakdmg_explosive : 1 : , "sv" :
g_debug_angularsensor : 0 : , "sv", "cheat" :
g_debug_constraint_sounds : 0 : , "sv", "cheat" : Enable debug printing about constraint sounds.
g_debug_doors : 0 : , "sv" :
g_debug_npc_vehicle_roles : 0 : , "sv" :
g_debug_ragdoll_removal : 0 : , "sv", "cheat", "rep" :
g_debug_trackpather : 0 : , "sv", "cheat" :
g_debug_transitions : 0 : , "sv" : Set to 1 and restart the map to be warned if the map has no trigger_transition volumes. Set to 2 to see a dump of all entities & associated results during a transition.
g_debug_vehiclebase : 0 : , "sv", "cheat" :
g_debug_vehicledriver : 0 : , "sv", "cheat" :
g_debug_vehicleexit : 0 : , "sv", "cheat" :
g_debug_vehiclesound : 0 : , "sv", "cheat" :
g_jeepexitspeed : 100 : , "sv", "cheat" :
g_Language : 0 : , "sv", "rep" :
g_ragdoll_important_maxcount : 2 : , "sv", "rep" :
g_ragdoll_maxcount : 8 : , "sv", "rep" :
gameui_activate : cmd : : Shows the game UI
gameui_allowescape : cmd : : Escape key allowed to hide game UI
gameui_allowescapetoshow : cmd : : Escape key allowed to show game UI
gameui_hide : cmd : : Hides the game UI
gameui_preventescape : cmd : : Escape key doesn't hide game UI
gameui_preventescapetoshow : cmd : : Escape key doesn't show game UI
gameui_xbox : 0 : :
give : cmd : : Give item to player. Arguments: <item_name>
givecurrentammo : cmd : : Give a supply of ammo for current weapon..
gl_amd_occlusion_workaround : 1 : :
global_set : cmd : : global_set <globalname> <state>: Sets the state of the given env_global (0 = OFF, 1 = ON, 2 = DEAD).
god : cmd : : Toggle. Player becomes invulnerable.
groundlist : cmd : : Display ground entity list <index>
hammer_update_entity : cmd : : Updates the entity's position/angles when in edit mode
hammer_update_safe_entities : cmd : : Updates entities in the map that can safely be updated (don't have parents or are affected by constraints). Also excludes entities mentioned in any hammer_updateignorelist objects in this map.
heartbeat : cmd : : Force heartbeat of master servers
help : cmd : : Find help about a convar/concommand.
hideconsole : cmd : : Hide the console.
hl2_episodic : 0 : , "sv", "rep" :
host_flush_threshold : 20 : : Memory threshold below which the host should flush caches between server instances
host_framerate : 0 : : Set to lock per-frame time elapse.
host_limitlocal : 0 : : Apply cl_cmdrate and cl_updaterate to loopback connection
host_map : 0 : : Current map name.
host_profile : 0 : :
host_runofftime : cmd : : Run off some time without rendering/updating sounds
host_showcachemiss : 0 : : Print a debug message when the client or server cache is missed.
host_ShowIPCCallCount : 0 : : Print # of IPC calls this number of times per second. If set to -1, the # of IPC calls is shown every frame.
host_sleep : 0 : , "cheat" : Force the host to sleep a certain number of milliseconds each frame.
host_speeds : 0 : : Show general system running times.
host_thread_mode : 0 : : Run the host in threaded mode, (0 == off, 1 == if multicore, 2 == force)
host_timer_report : cmd : : Spew CPU timer jitter for the last 128 frames in microseconds (dedicated only)
host_timer_spin_ms : 0 : : Use CPU busy-loop for improved timer precision (dedicated only)
host_timescale : 1 : , "rep" : Prescale the clock by this amount.
host_writeconfig : cmd : : Store current settings to config.cfg (or specified .cfg file).
hostage_debug : 0 : , "sv", "cheat" : Show hostage AI debug information
hostip : -1062731648.000 : : Host game server ip
hostname : 0 : : Hostname for server.
hostport : 27015 : : Host game server port
hud_jeephint_numentries : 10 : , "sv" :
hurtme : cmd : : Hurts the player. Arguments: <health to lose>
incrementvar : cmd : : Increment specified convar value.
ip : 0 : : Overrides IP for multihomed hosts
joy_active : -1 : : Which of the connected joysticks / gamepads to use (-1 means first found)
joy_axis_deadzone : 0 : , "a" : Dead zone near the zero point to not report movement.
joy_axisbutton_threshold : 0 : , "a" : Analog axis range before a button press is registered.
joy_gamecontroller_config : 0 : , "a" : Game controller mapping (passed to SDL with SDL_HINT_GAMECONTROLLERCONFIG), can also be configured in Steam Big Picture mode.
joy_xcontroller_found : 0 : : Automatically set to 1 if an xcontroller has been detected.
jpeg : cmd : : Take a jpeg screenshot: jpeg <filename> <quality 1-100>.
jpeg_quality : 90 : : jpeg screenshot quality.
kdtree_test : cmd : : Tests spatial partition for entities queries.
key_findbinding : cmd : : Find key bound to specified command string.
key_listboundkeys : cmd : : List bound keys with bindings.
key_updatelayout : cmd : : Updates game keyboard layout to current windows keyboard setting.
kick : cmd : : Kick a player by name.
kickall : cmd : : Kicks everybody connected with a message.
kickid : cmd : : Kick a player by userid or uniqueid, with a message.
kill : cmd : : Kills the player with generic damage
killserver : cmd : : Shutdown the server.
killvector : cmd : : Kills a player applying force. Usage: killvector <player> <x value> <y value> <z value>
light_crosshair : cmd : : Show texture color at crosshair
lightcache_maxmiss : 2 : , "cheat" :
lightprobe : cmd : : Samples the lighting environment. Creates a cubemap and a file indicating the local lighting in a subdirectory called 'materials/lightprobes' .The lightprobe command requires you specify a base file name.
linefile : cmd : : Parses map leak data from .lin file
listdemo : cmd : : List demo file contents.
listid : cmd : : Lists banned users.
listip : cmd : : List IP addresses on the ban list.
listissues : cmd : : List all the issues that can be voted on.
listmodels : cmd : : List loaded models.
listRecentNPCSpeech : cmd : : Displays a list of the last 5 lines of speech from NPCs.
load : cmd : : Load a saved game.
loader_dump_table : cmd : :
loader_spew_info : 0 : : 0:Off, 1:Timing, 2:Completions, 3:Late Completions, 4:Purges, -1:All
loader_spew_info_ex : 0 : : (internal)
log : cmd : : Enables logging to file, console, and udp < on | off >.
log_verbose_enable : 0 : , "sv" : Set to 1 to enable verbose server log on the server.
log_verbose_interval : 3 : , "sv" : Determines the interval (in seconds) for the verbose server log.
logaddress_add : cmd : : Set address and port for remote host <ip:port>.
logaddress_del : cmd : : Remove address and port for remote host <ip:port>.
logaddress_delall : cmd : : Remove all udp addresses being logged to
logaddress_list : cmd : : List all addresses currently being used by logaddress.
lservercfgfile : 0 : , "sv" :
map : cmd : : Start playing on specified map.
map_background : cmd : : Runs a map as the background to the main menu.
map_commentary : cmd : : Start playing, with commentary, on a specified map.
map_edit : cmd : :
map_noareas : 0 : : Disable area to area connection testing.
map_setbombradius : cmd : : Sets the bomb radius for the map.
map_showbombradius : cmd : : Shows bomb radius from the center of each bomb site and planted bomb.
map_showspawnpoints : cmd : : Shows player spawn points (red=invalid)
mapcyclefile : 0 : , "sv" : Name of the .txt file used to cycle the maps on multiplayer servers
maps : cmd : : Displays list of maps.
mat_aaquality : 0 : :
mat_accelerate_adjust_exposure_down : 3 : , "cheat" :
mat_antialias : 0 : :
mat_bufferprimitives : 1 : :
mat_bumpbasis : 0 : , "cheat" :
mat_bumpmap : 1 : :
mat_colcorrection_disableentities : 0 : :
mat_color_projection : 0 : , "a" :
mat_colorcorrection : 0 : :
mat_compressedtextures : 1 : :
mat_configcurrent : cmd : : show the current video control panel config for the material system
mat_crosshair : cmd : : Display the name of the material under the crosshair
mat_crosshair_edit : cmd : : open the material under the crosshair in the editor defined by mat_crosshair_edit_editor
mat_crosshair_explorer : cmd : : open the material under the crosshair in explorer and highlight the vmt file
mat_crosshair_printmaterial : cmd : : print the material under the crosshair
mat_crosshair_reloadmaterial : cmd : : reload the material under the crosshair
mat_debugalttab : 0 : , "cheat" :
mat_debugdepth : 0 : :
mat_debugdepthmode : 0 : :
mat_debugdepthval : 128 : :
mat_debugdepthvalmax : 256 : :
mat_depthbias_decal : -262144 : , "cheat" :
mat_depthbias_normal : 0 : , "cheat" :
mat_depthbias_shadowmap : 0 : , "cheat" :
mat_diffuse : 1 : , "cheat" :
mat_disable_fancy_blending : 0 : :
mat_disable_lightwarp : 0 : :
mat_drawflat : 0 : , "cheat" :
mat_drawTitleSafe : 0 : : Enable title safe overlay
mat_dxlevel : 0 : :
mat_dynamic_tonemapping : 1 : , "cheat" :
mat_edit : cmd : : Bring up the material under the crosshair in the editor
mat_enable_vrmode : cmd : : Switches the material system to VR mode (after restart)
mat_envmapsize : 128 : :
mat_envmaptgasize : 32 : :
mat_excludetextures : 0 : , "cheat" :
mat_fastnobump : 0 : , "cheat" :
mat_fastspecular : 1 : : Enable/Disable specularity for visual testing. Will not reload materials and will not affect perf.
mat_fillrate : 0 : , "cheat" :
mat_filterlightmaps : 1 : :
mat_filtertextures : 1 : :
mat_force_tonemap_scale : 0 : , "cheat" :
mat_forceaniso : 1 : :
mat_forcedynamic : 0 : , "cheat" :
mat_forcehardwaresync : 1 : :
mat_forcemanagedtextureintohardware : 1 : :
mat_fullbright : 0 : , "cheat" :
mat_hdr_enabled : cmd : : Report if HDR is enabled for debugging
mat_hdr_level : 2 : , "a" : Set to 0 for no HDR, 1 for LDR+bloom on HDR maps, and 2 for full HDR on HDR maps.
mat_hdr_manual_tonemap_rate : 1 : :
mat_hdr_tonemapscale : 1 : , "cheat" : The HDR tonemap scale. 1 = Use autoexposure, 0 = eyes fully closed, 16 = eyes wide open.
mat_info : cmd : : Shows material system info
mat_leafvis : 0 : , "cheat" : Draw wireframe of current leaf
mat_levelflush : 1 : :
mat_lightmap_pfms : 0 : : Outputs .pfm files containing lightmap data for each lightmap page when a level exits.
mat_loadtextures : 1 : , "cheat" :
mat_luxels : 0 : , "cheat" :
mat_managedtextures : 1 : , "a" : If set, allows Direct3D to manage texture uploading at the cost of extra system memory
mat_max_worldmesh_vertices : 65536 : :
mat_maxframelatency : 1 : :
mat_measurefillrate : 0 : , "cheat" :
mat_mipmaptextures : 1 : :
mat_monitorgamma : 2 : : monitor gamma (typically 2.2 for CRT and 1.7 for LCD)
mat_monitorgamma_tv_enabled : 0 : , "a" :
mat_monitorgamma_tv_exp : 2 : :
mat_monitorgamma_tv_range_max : 255 : :
mat_monitorgamma_tv_range_min : 16 : :
mat_morphstats : 0 : , "cheat" :
mat_motion_blur_enabled : 0 : :
mat_motion_blur_percent_of_screen_max : 4 : :
mat_norendering : 0 : , "cheat" :
mat_normalmaps : 0 : , "cheat" :
mat_normals : 0 : , "cheat" :
mat_parallaxmap : 1 : :
mat_phong : 1 : :
mat_picmip : 0 : :
mat_powersavingsmode : 0 : , "a" : Power Savings Mode
mat_proxy : 0 : , "cheat" :
mat_queue_mode : -1 : , "a" : The queue/thread mode the material system should use: -1=default, 0=synchronous single thread, 2=queued multithreaded
mat_queue_report : 0 : , "a" : Report thread stalls. Positive number will filter by stalls >= time in ms. -1 reports all locks.
mat_reducefillrate : 0 : :
mat_reduceparticles : 0 : :
mat_reloadallmaterials : cmd : : Reloads all materials
mat_reloadmaterial : cmd : : Reloads a single material
mat_reloadtextures : cmd : : Reloads all textures
mat_report_queue_status : 0 : :
mat_reporthwmorphmemory : cmd : : Reports the amount of size in bytes taken up by hardware morph textures.
mat_reset_rendertargets : cmd : : Resets all the render targets
mat_reversedepth : 0 : , "cheat" :
mat_savechanges : cmd : : saves current video configuration to the registry
mat_setvideomode : cmd : : sets the width, height, windowed state of the material system
mat_shadowstate : 1 : :
mat_show_ab_hdr : 0 : :
mat_show_texture_memory_usage : 0 : , "cheat", "numeric" : Display the texture memory usage on the HUD.
mat_showenvmapmask : 0 : :
mat_showlowresimage : 0 : , "cheat" :
mat_showmaterials : cmd : : Show materials.
mat_showmaterialsverbose : cmd : : Show materials (verbose version).
mat_showmiplevels : 0 : , "cheat" : color-code miplevels 2: normalmaps, 1: everything else
mat_showtextures : cmd : : Show used textures.
mat_slopescaledepthbias_decal : 0 : , "cheat" :
mat_slopescaledepthbias_normal : 0 : , "cheat" :
mat_slopescaledepthbias_shadowmap : 16 : , "cheat" :
mat_softwarelighting : 0 : :
mat_softwareskin : 0 : , "cheat" :
mat_specular : 1 : : Enable/Disable specularity for perf testing. Will cause a material reload upon change.
mat_spew_on_texture_size : 0 : : Print warnings about vtf content that isn't of the expected size
mat_supportflashlight : -1 : : 0 - do not support flashlight (don't load flashlight shader combos), 1 - flashlight is supported
mat_surfaceid : 0 : , "cheat" :
mat_surfacemat : 0 : , "cheat" :
mat_texture_list : 0 : , "cheat" : For debugging, show a list of used textures per frame
+mat_texture_list : cmd : :
-mat_texture_list : cmd : :
mat_texture_list_all : 0 : , "cheat", "numeric" : If this is nonzero, then the texture list panel will show all currently-loaded textures.
mat_texture_list_content_path : 0 : , "a" : The content path to the materialsrc directory. If left unset, it'll assume your content directory is next to the currently running game dir.
mat_texture_list_txlod : cmd : : Adjust LOD of the last viewed texture +1 to inc resolution, -1 to dec resolution
mat_texture_list_txlod_sync : cmd : : 'reset' - resets all run-time changes to LOD overrides, 'save' - saves all changes to material content files
mat_texture_list_view : 1 : , "cheat", "numeric" : If this is nonzero, then the texture list panel will render thumbnails of currently-loaded textures.
mat_texture_save_fonts : cmd : : Save all font textures
mat_texture_tracking : 0 : :
mat_tonemap_algorithm : 1 : , "cheat" : 0 = Original Algorithm 1 = New Algorithm
mat_tonemapping_occlusion_use_stencil : 0 : :
mat_trilinear : 0 : :
mat_use_compressed_hdr_textures : 1 : :
mat_visualize_dof : 0 : , "cheat" :
mat_vrmode_adapter : -1 : :
mat_vsync : 0 : : Force sync to vertical retrace
mat_wireframe : 0 : , "cheat" :
matchmakingport : 27025 : : Host Matchmaking port
maxplayers : cmd : : Change the maximum number of players allowed on this server.
mem_compact : cmd : :
mem_dump : cmd : : Dump memory stats to text file.
mem_dumpstats : 0 : : Dump current and max heap usage info to console at end of frame ( set to 2 for continuous output )
mem_eat : cmd : :
mem_force_flush : 0 : , "cheat" : Force cache flush of unlocked resources on every alloc
mem_max_heapsize : 256 : : Maximum amount of memory to dedicate to engine hunk and datacache (in mb)
mem_max_heapsize_dedicated : 64 : : Maximum amount of memory to dedicate to engine hunk and datacache, for dedicated server (in mb)
mem_min_heapsize : 48 : : Minimum amount of memory to dedicate to engine hunk and datacache (in mb)
mem_periodicdumps : 0 : : Write periodic memstats dumps every n seconds.
mem_test : cmd : :
mem_test_each_frame : 0 : : Run heap check at end of every frame
mem_test_every_n_seconds : 0 : : Run heap check at a specified interval
mem_vcollide : cmd : : Dumps the memory used by vcollides
memory : cmd : : Print memory stats.
memory_diff : cmd : : show memory stats relative to snapshot
memory_list : cmd : : dump memory list (linux only)
memory_mark : cmd : : snapshot current allocation status
memory_status : cmd : : show memory stats (linux only)
minisave : cmd : : Saves game (for current level only!)
mission_list : cmd : : List all available tactical missions
mission_show : cmd : : Show the given mission
mm_max_spectators : 4 : : Max players allowed on the spectator team
mm_message : cmd : : Send a message to all remote clients
mm_minplayers : 2 : : Number of players required to start an unranked game
mm_select_session : cmd : : Select a session
mm_session_info : cmd : : Dump session information
mm_stats : cmd : :
mod_forcedata : 1 : : Forces all model file data into cache on model load.
mod_forcetouchdata : 1 : : Forces all model file data into cache on model load.
mod_load_anims_async : 0 : :
mod_load_fakestall : 0 : : Forces all ANI file loading to stall for specified ms
mod_load_mesh_async : 0 : :
mod_load_showstall : 0 : : 1 - show hitches , 2 - show stalls
mod_load_vcollide_async : 0 : :
mod_lock_mdls_on_load : 0 : :
mod_test_mesh_not_available : 0 : , "cheat" :
mod_test_not_available : 0 : , "cheat" :
mod_test_verts_not_available : 0 : , "cheat" :
mod_touchalldata : 1 : : Touch model data during level startup
mod_trace_load : 0 : :
model_list : cmd : : Dump model list to file
motdfile : 0 : , "sv" : The MOTD file to load.
motdfile_text : 0 : , "sv" : The text-only MOTD file to use for clients that have disabled HTML MOTDs.
movie_fixwave : cmd : : Fixup corrupted .wav file if engine crashed during startmovie/endmovie, etc.
mp_allowNPCs : 1 : , "sv", "nf" :
mp_allowspectators : 1 : , "sv", "rep" : toggles whether the server allows spectator mode or not
mp_autocrosshair : 1 : , "sv", "nf" :
mp_autokick : 1 : , "sv", "rep" : Kick idle/team-killing players
mp_autoteambalance : 1 : , "sv", "nf" :
mp_bonusroundtime : 15 : , "sv", "rep" : Time after round win until round restarts
mp_bonusroundtime_final : 15 : , "sv", "rep" : Time after final round ends until round restarts
mp_buytime : 1 : , "sv", "rep" : How many minutes after round start players can buy items for.
mp_c4timer : 45 : , "sv", "nf", "rep" : how long from when the C4 is armed until it blows
mp_chattime : 10 : , "sv", "rep" : amount of time players can chat after the game is over
mp_clan_ready_signal : 0 : , "sv" : Text that team leader from each team must speak for the match to begin
mp_clan_readyrestart : 0 : , "sv" : If non-zero, game will restart once someone from each team gives the ready signal
mp_decals : 200 : , "a" :
mp_defaultteam : 0 : , "sv" :
mp_disable_autokick : cmd : : Prevents a userid from being auto-kicked
mp_disable_respawn_times : 0 : , "sv", "nf", "rep" :
mp_dump_timers : cmd : : Prints round timers to the console for debugging
mp_enableroundwaittime : 1 : , "sv", "rep" : Enable timers to wait between rounds.
mp_fadetoblack : 0 : , "sv", "nf", "rep" : fade a player's screen to black when he dies
mp_falldamage : 0 : , "sv", "nf" :
mp_flashlight : 0 : , "sv", "nf" :
mp_footsteps : 1 : , "sv", "nf" :
mp_forceautoteam : 0 : , "sv", "nf", "rep" : Automatically assign players to teams when joining.
mp_forcecamera : 1 : , "sv", "rep" : Restricts spectator modes for dead players
mp_forcerespawn : 1 : , "sv", "nf" :
mp_forcerespawnplayers : cmd : : Force all players to respawn.
mp_forcewin : cmd : : Forces team to win
mp_fraglimit : 0 : , "sv", "nf", "rep" : The number of kills at which the map ends
mp_freezetime : 6 : , "sv", "nf", "rep" : how many seconds to keep players frozen when the round starts
mp_friendlyfire : 0 : , "sv", "nf", "rep" : Allows team members to injure other members of their team
mp_holiday_nogifts : 0 : , "sv", "nf" : Set to 1 to prevent holiday gifts from spawning when players are killed.
mp_hostagepenalty : 13 : , "sv", "nf" : Terrorist are kicked for killing too much hostages
mp_humanteam : 0 : , "sv", "rep" : Restricts human players to a single team {any, CT, T}
mp_ignore_round_win_conditions : 0 : , "sv", "rep" : Ignore conditions which would end the current round
mp_limitteams : 2 : , "sv", "nf", "rep" : Max # of players 1 team can have over another (0 disables check)
mp_logdetail : 0 : , "sv" : Logs attacks. Values are: 0=off, 1=enemy, 2=teammate, 3=both)
mp_mapcycle_empty_timeout_seconds : 0 : , "sv", "rep" : If nonzero, server will cycle to the next map if it has been empty on the current map for N seconds
mp_match_end_at_timelimit : 0 : , "sv", "nf" : Allow the match to end when mp_timelimit hits instead of waiting for the end of the current round.
mp_maxrounds : 0 : , "sv", "nf", "rep" : max number of rounds to play before server changes maps
mp_playerid : 0 : , "sv", "rep" : Controls what information player see in the status bar: 0 all names; 1 team names; 2 no names
mp_playerid_delay : 0 : , "sv", "rep" : Number of seconds to delay showing information in the status bar
mp_playerid_hold : 0 : , "sv", "rep" : Number of seconds to keep showing old information in the status bar
mp_respawnwavetime : 10 : , "sv", "nf", "rep" : Time between respawn waves.
mp_restartgame : 0 : , "sv" : If non-zero, game will restart in the specified number of seconds
mp_restartgame_immediate : 0 : , "sv" : If non-zero, game will restart immediately
mp_restartround : 0 : , "sv" : If non-zero, the current round will restart in the specified number of seconds
mp_round_restart_delay : 5 : , "sv", "rep" : Number of seconds to delay before restarting a round after a win
mp_roundtime : 2 : , "sv", "nf", "rep" : How many minutes each round takes.
mp_scrambleteams : cmd : : Scramble the teams and restart the game
mp_scrambleteams_auto : 1 : , "sv", "nf" : Server will automatically scramble the teams if criteria met. Only works on dedicated servers.
mp_scrambleteams_auto_windifference : 2 : , "sv", "nf" : Number of round wins a team must lead by in order to trigger an auto scramble.
mp_show_voice_icons : 1 : , "sv", "rep" : Show overhead player voice icons when players are speaking.
mp_spawnprotectiontime : 5 : , "sv", "rep" : Kick players who team-kill within this many seconds of a round restart.
mp_stalemate_enable : 0 : , "sv", "nf" : Enable/Disable stalemate mode.
mp_stalemate_meleeonly : 0 : , "sv", "nf", "rep" : Restrict everyone to melee weapons only while in Sudden Death.
mp_stalemate_timelimit : 240 : , "sv", "rep" : Timelimit (in seconds) of the stalemate round.
mp_startmoney : 800 : , "sv", "nf", "rep" : amount of money each player gets when they reset
mp_switchteams : cmd : : Switch teams and restart the game
mp_teamlist : 0 : , "sv", "nf" :
mp_teamoverride : 1 : , "sv" :
mp_teamplay : 0 : , "sv", "nf" :
mp_teams_unbalance_limit : 1 : , "sv", "rep" : Teams are unbalanced when one team has this many more players than the other team. (0 disables check)
mp_timelimit : 0 : , "sv", "nf", "rep" : game time per map in minutes
mp_tkpunish : 0 : , "sv", "rep" : Will a TK'er be punished in the next round? {0=no, 1=yes}
mp_tournament : 0 : , "sv", "nf", "rep" :
mp_tournament_allow_non_admin_restart : 1 : , "sv" : Allow mp_tournament_restart command to be issued by players other than admin.
mp_tournament_restart : cmd : : Restart Tournament Mode on the current level.
mp_waitingforplayers_cancel : 0 : , "sv" : Set to 1 to end the WaitingForPlayers period.
mp_waitingforplayers_restart : 0 : , "sv" : Set to 1 to start or restart the WaitingForPlayers period.
mp_waitingforplayers_time : 0 : , "sv" : WaitingForPlayers time length in seconds
mp_weaponstay : 0 : , "sv", "nf" :
mp_winlimit : 0 : , "sv", "nf", "rep" : Max score one team can reach before server changes maps
multvar : cmd : : Multiply specified convar value.
name : 0 : , "a", "user", "print", "server_can_execute" : Current user name
namelockid : cmd : : Prevent name changes for this userID.
nav_add_to_selected_set : cmd : : Add current area to the selected set.
nav_add_to_selected_set_by_id : cmd : : Add specified area id to the selected set.
nav_analyze : cmd : : Re-analyze the current Navigation Mesh and save it to disk.
nav_area_bgcolor : 0 : , "sv", "cheat" : RGBA color to draw as the background color for nav areas while editing.
nav_area_max_size : 50 : , "sv", "cheat" : Max area size created in nav generation
nav_avoid : cmd : : Toggles the 'avoid this area when possible' flag used by the AI system.
nav_begin_area : cmd : : Defines a corner of a new Area or Ladder. To complete the Area or Ladder, drag the opposite corner to the desired location and issue a 'nav_end_area' command.
nav_begin_deselecting : cmd : : Start continuously removing from the selected set.
nav_begin_drag_deselecting : cmd : : Start dragging a selection area.
nav_begin_drag_selecting : cmd : : Start dragging a selection area.
nav_begin_selecting : cmd : : Start continuously adding to the selected set.
nav_begin_shift_xy : cmd : : Begin shifting the Selected Set.
nav_build_ladder : cmd : : Attempts to build a nav ladder on the climbable surface under the cursor.
nav_check_connectivity : cmd : : Checks to be sure every (or just the marked) nav area can get to every goal area for the map (hostages or bomb site).
nav_check_file_consistency : cmd : : Scans the maps directory and reports any missing/out-of-date navigation files.
nav_check_floor : cmd : : Updates the blocked/unblocked status for every nav area.
nav_check_stairs : cmd : : Update the nav mesh STAIRS attribute
nav_chop_selected : cmd : : Chops all selected areas into their component 1x1 areas
nav_clear_attribute : cmd : : Remove given nav attribute from all areas in the selected set.
nav_clear_selected_set : cmd : : Clear the selected set.
nav_clear_walkable_marks : cmd : : Erase any previously placed walkable positions.
nav_compress_id : cmd : : Re-orders area and ladder ID's so they are continuous.
nav_connect : cmd : : To connect two Areas, mark the first Area, highlight the second Area, then invoke the connect command. Note that this creates a ONE-WAY connection from the first to the second Area. To make a two-way connection, also connect the second area to the first.
nav_coplanar_slope_limit : 0 : , "sv", "cheat" :
nav_coplanar_slope_limit_displacement : 0 : , "sv", "cheat" :
nav_corner_adjust_adjacent : 18 : , "sv", "cheat" : radius used to raise/lower corners in nearby areas when raising/lowering corners.
nav_corner_lower : cmd : : Lower the selected corner of the currently marked Area.
nav_corner_place_on_ground : cmd : : Places the selected corner of the currently marked Area on the ground.
nav_corner_raise : cmd : : Raise the selected corner of the currently marked Area.
nav_corner_select : cmd : : Select a corner of the currently marked Area. Use multiple times to access all four corners.
nav_create_area_at_feet : 0 : , "sv", "cheat" : Anchor nav_begin_area Z to editing player's feet
nav_create_place_on_ground : 0 : , "sv", "cheat" : If true, nav areas will be placed flush with the ground when created by hand.
nav_crouch : cmd : : Toggles the 'must crouch in this area' flag used by the AI system.
nav_debug_blocked : 0 : , "sv", "cheat" :
nav_delete : cmd : : Deletes the currently highlighted Area.
nav_delete_marked : cmd : : Deletes the currently marked Area (if any).
nav_disconnect : cmd : : To disconnect two Areas, mark an Area, highlight a second Area, then invoke the disconnect command. This will remove all connections between the two Areas.
nav_disconnect_outgoing_oneways : cmd : : For each area in the selected set, disconnect all outgoing one-way connections.
nav_displacement_test : 10000 : , "sv", "cheat" : Checks for nodes embedded in displacements (useful for in-development maps)
nav_dont_hide : cmd : : Toggles the 'area is not suitable for hiding spots' flag used by the AI system.
nav_drag_selection_volume_zmax_offset : 32 : , "sv", "rep" : The offset of the nav drag volume top from center
nav_drag_selection_volume_zmin_offset : 32 : , "sv", "rep" : The offset of the nav drag volume bottom from center
nav_draw_limit : 500 : , "sv", "cheat" : The maximum number of areas to draw in edit mode
nav_dump_selected_set_positions : cmd : : Write the (x,y,z) coordinates of the centers of all selected nav areas to a file.
nav_edit : 0 : , "sv", "cheat" : Set to one to interactively edit the Navigation Mesh. Set to zero to leave edit mode.
nav_end_area : cmd : : Defines the second corner of a new Area or Ladder and creates it.
nav_end_deselecting : cmd : : Stop continuously removing from the selected set.
nav_end_drag_deselecting : cmd : : Stop dragging a selection area.
nav_end_drag_selecting : cmd : : Stop dragging a selection area.
nav_end_selecting : cmd : : Stop continuously adding to the selected set.
nav_end_shift_xy : cmd : : Finish shifting the Selected Set.
nav_flood_select : cmd : : Selects the current Area and all Areas connected to it, recursively. To clear a selection, use this command again.
nav_gen_cliffs_approx : cmd : : Mark cliff areas, post-processing approximation
nav_generate : cmd : : Generate a Navigation Mesh for the current map and save it to disk.
nav_generate_fencetops : 1 : , "sv", "cheat" : Autogenerate nav areas on fence and obstacle tops
nav_generate_fixup_jump_areas : 1 : , "sv", "cheat" : Convert obsolete jump areas into 2-way connections
nav_generate_incremental : cmd : : Generate a Navigation Mesh for the current map and save it to disk.
nav_generate_incremental_range : 2000 : , "sv", "cheat" :
nav_generate_incremental_tolerance : 0 : , "sv", "cheat" : Z tolerance for adding new nav areas.
nav_jump : cmd : : Toggles the 'traverse this area by jumping' flag used by the AI system.
nav_ladder_flip : cmd : : Flips the selected ladder's direction.
nav_load : cmd : : Loads the Navigation Mesh for the current map.
nav_lower_drag_volume_max : cmd : : Lower the top of the drag select volume.
nav_lower_drag_volume_min : cmd : : Lower the bottom of the drag select volume.
nav_make_sniper_spots : cmd : : Chops the marked area into disconnected sub-areas suitable for sniper spots.
nav_mark : cmd : : Marks the Area or Ladder under the cursor for manipulation by subsequent editing commands.
nav_mark_attribute : cmd : : Set nav attribute for all areas in the selected set.
nav_mark_unnamed : cmd : : Mark an Area with no Place name. Useful for finding stray areas missed when Place Painting.
nav_mark_walkable : cmd : : Mark the current location as a walkable position. These positions are used as seed locations when sampling the map to generate a Navigation Mesh.
nav_max_view_distance : 6000 : , "sv", "cheat" : Maximum range for precomputed nav mesh visibility (0 = default 1500 units)
nav_max_vis_delta_list_length : 64 : , "sv", "cheat" :
nav_merge : cmd : : To merge two Areas into one, mark the first Area, highlight the second by pointing your cursor at it, and invoke the merge command.
nav_merge_mesh : cmd : : Merges a saved selected set into the current mesh.
nav_no_hostages : cmd : : Toggles the 'hostages cannot use this area' flag used by the AI system.
nav_no_jump : cmd : : Toggles the 'dont jump in this area' flag used by the AI system.
nav_place_floodfill : cmd : : Sets the Place of the Area under the cursor to the curent Place, and 'flood-fills' the Place to all adjacent Areas. Flood-filling stops when it hits an Area with the same Place, or a different Place than that of the initial Area.
nav_place_list : cmd : : Lists all place names used in the map.
nav_place_pick : cmd : : Sets the current Place to the Place of the Area under the cursor.
nav_place_replace : cmd : : Replaces all instances of the first place with the second place.
nav_place_set : cmd : : Sets the Place of all selected areas to the current Place.
nav_potentially_visible_dot_tolerance : 0 : , "sv", "cheat" :
nav_precise : cmd : : Toggles the 'dont avoid obstacles' flag used by the AI system.
nav_quicksave : 1 : , "sv", "cheat" : Set to one to skip the time consuming phases of the analysis. Useful for data collection and testing.
nav_raise_drag_volume_max : cmd : : Raise the top of the drag select volume.
nav_raise_drag_volume_min : cmd : : Raise the bottom of the drag select volume.
nav_recall_selected_set : cmd : : Re-selects the stored selected set.
nav_remove_from_selected_set : cmd : : Remove current area from the selected set.
nav_remove_jump_areas : cmd : : Removes legacy jump areas, replacing them with connections.
nav_restart_after_analysis : 1 : , "sv" : When nav nav_restart_after_analysis finishes, restart the server. Turning this off can cause crashes, but is useful for incremental generation.
nav_run : cmd : : Toggles the 'traverse this area by running' flag used by the AI system.
nav_save : cmd : : Saves the current Navigation Mesh to disk.
nav_save_selected : cmd : : Writes the selected set to disk for merging into another mesh via nav_merge_mesh.
nav_select_blocked_areas : cmd : : Adds all blocked areas to the selected set
nav_select_damaging_areas : cmd : : Adds all damaging areas to the selected set
nav_select_half_space : cmd : : Selects any areas that intersect the given half-space.
nav_select_invalid_areas : cmd : : Adds all invalid areas to the Selected Set.
nav_select_larger_than : cmd : : Select nav areas where both dimensions are larger than the given size.
nav_select_obstructed_areas : cmd : : Adds all obstructed areas to the selected set
nav_select_orphans : cmd : : Adds all orphan areas to the selected set (highlight a valid area first).
nav_select_overlapping : cmd : : Selects nav areas that are overlapping others.
nav_select_radius : cmd : : Adds all areas in a radius to the selection set
nav_select_stairs : cmd : : Adds all stairway areas to the selected set
nav_selected_set_border_color : 100 : , "sv", "cheat" : Color used to draw the selected set borders while editing.
nav_selected_set_color : 255 : , "sv", "cheat" : Color used to draw the selected set background while editing.
nav_set_place_mode : cmd : : Sets the editor into or out of Place mode. Place mode allows labelling of Area with Place names.
nav_shift : cmd : : Shifts the selected areas by the specified amount
nav_show_approach_points : 0 : , "sv", "cheat" : Show Approach Points in the Navigation Mesh.
nav_show_area_info : 0 : , "sv", "cheat" : Duration in seconds to show nav area ID and attributes while editing
nav_show_compass : 0 : , "sv", "cheat" :
nav_show_continguous : 0 : , "sv", "cheat" : Highlight non-contiguous connections
nav_show_danger : 0 : , "sv", "cheat" : Show current 'danger' levels.
nav_show_dumped_positions : cmd : : Show the (x,y,z) coordinate positions of the given dump file.
nav_show_func_nav_avoid : 0 : , "sv", "cheat" : Show areas of designer-placed bot avoidance due to func_nav_avoid entities
nav_show_func_nav_prefer : 0 : , "sv", "cheat" : Show areas of designer-placed bot preference due to func_nav_prefer entities
nav_show_func_nav_prerequisite : 0 : , "sv", "cheat" : Show areas of designer-placed bot preference due to func_nav_prerequisite entities
nav_show_light_intensity : 0 : , "sv", "cheat" :
nav_show_node_grid : 0 : , "sv", "cheat" :
nav_show_node_id : 0 : , "sv", "cheat" :
nav_show_nodes : 0 : , "sv", "cheat" :
nav_show_player_counts : 0 : , "sv", "cheat" : Show current player counts in each area.
nav_show_potentially_visible : 0 : , "sv", "cheat" : Show areas that are potentially visible from the current nav area
nav_simplify_selected : cmd : : Chops all selected areas into their component 1x1 areas and re-merges them together into larger areas
nav_slope_limit : 0 : , "sv", "cheat" : The ground unit normal's Z component must be greater than this for nav areas to be generated.
nav_slope_tolerance : 0 : , "sv", "cheat" : The ground unit normal's Z component must be this close to the nav area's Z component to be generated.
nav_snap_to_grid : 0 : , "sv", "cheat" : Snap to the nav generation grid when creating new nav areas
nav_solid_props : 0 : , "sv", "cheat" : Make props solid to nav generation/editing
nav_splice : cmd : : To splice, mark an area, highlight a second area, then invoke the splice command to create a new, connected area between them.
nav_split : cmd : : To split an Area into two, align the split line using your cursor and invoke the split command.
nav_split_place_on_ground : 0 : , "sv", "cheat" : If true, nav areas will be placed flush with the ground when split.
nav_stand : cmd : : Toggles the 'stand while hiding' flag used by the AI system.
nav_stop : cmd : : Toggles the 'must stop when entering this area' flag used by the AI system.
nav_store_selected_set : cmd : : Stores the current selected set for later retrieval.
nav_strip : cmd : : Strips all Hiding Spots, Approach Points, and Encounter Spots from the current Area.
nav_subdivide : cmd : : Subdivides all selected areas.
nav_test_node : 0 : , "sv", "cheat" :
nav_test_node_crouch : 0 : , "sv", "cheat" :
nav_test_node_crouch_dir : 4 : , "sv", "cheat" :
nav_test_stairs : cmd : : Test the selected set for being on stairs
nav_toggle_deselecting : cmd : : Start or stop continuously removing from the selected set.
nav_toggle_in_selected_set : cmd : : Remove current area from the selected set.
nav_toggle_place_mode : cmd : : Toggle the editor into and out of Place mode. Place mode allows labelling of Area with Place names.
nav_toggle_place_painting : cmd : : Toggles Place Painting mode. When Place Painting, pointing at an Area will 'paint' it with the current Place.
nav_toggle_selected_set : cmd : : Toggles all areas into/out of the selected set.
nav_toggle_selecting : cmd : : Start or stop continuously adding to the selected set.
nav_transient : cmd : : Toggles the 'area is transient and may become blocked' flag used by the AI system.
nav_unmark : cmd : : Clears the marked Area or Ladder.
nav_update_blocked : cmd : : Updates the blocked/unblocked status for every nav area.
nav_update_lighting : cmd : : Recomputes lighting values
nav_update_visibility_on_edit : 0 : , "sv", "cheat" : If nonzero editing the mesh will incrementally recompue visibility
nav_use_place : cmd : : If used without arguments, all available Places will be listed. If a Place argument is given, the current Place is set.
nav_walk : cmd : : Toggles the 'traverse this area by walking' flag used by the AI system.
nav_warp_to_mark : cmd : : Warps the player to the marked area.
nav_world_center : cmd : : Centers the nav mesh in the world
nb_allow_avoiding : 1 : , "sv", "cheat" :
nb_allow_climbing : 1 : , "sv", "cheat" :
nb_allow_gap_jumping : 1 : , "sv", "cheat" :
nb_blind : 0 : , "sv", "cheat" : Disable vision
nb_command : cmd : : Sends a command string to all bots
nb_debug : cmd : : Debug NextBots. Categories are: BEHAVIOR, LOOK_AT, PATH, ANIMATION, LOCOMOTION, VISION, HEARING, EVENTS, ERRORS.
nb_debug_climbing : 0 : , "sv", "cheat" :
nb_debug_filter : cmd : : Add items to the NextBot debug filter. Items can be entindexes or part of the indentifier of one or more bots.
nb_debug_history : 1 : , "sv", "cheat" : If true, each bot keeps a history of debug output in memory
nb_debug_known_entities : 0 : , "sv", "cheat" : Show the 'known entities' for the bot that is the current spectator target
nb_delete_all : cmd : : Delete all non-player NextBot entities.
nb_force_look_at : cmd : : Force selected bot to look at the local player's position
nb_goal_look_ahead_range : 50 : , "sv", "cheat" :
nb_head_aim_resettle_angle : 100 : , "sv", "cheat" : After rotating through this angle, the bot pauses to 'recenter' its virtual mouse on its virtual mousepad
nb_head_aim_resettle_time : 0 : , "sv", "cheat" : How long the bot pauses to 'recenter' its virtual mouse on its virtual mousepad
nb_head_aim_settle_duration : 0 : , "sv", "cheat" :
nb_head_aim_steady_max_rate : 100 : , "sv", "cheat" :
nb_ladder_align_range : 50 : , "sv", "cheat" :
nb_last_area_update_tolerance : 4 : , "sv", "cheat" : Distance a character needs to travel in order to invalidate cached area