-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServer.cfg
1854 lines (1841 loc) · 39.5 KB
/
Server.cfg
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
//_autosave cmd
//_autosavedangerous cmd
//_bugreporter_restart cmd
//_resetgamestats cmd
//_restart cmd
achievement_debug 0
//addip cmd
adsp_alley_min 122
adsp_courtyard_min 126
adsp_debug 0
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
ai_block_damage 0
ai_debug_assault 0
ai_debug_avoidancebounds 0
ai_debug_directnavprobe 0
ai_debug_doors 0
ai_debug_dyninteractions 0
ai_debug_efficiency 0
ai_debug_enemies 0
ai_debug_expressions 0
ai_debug_follow 0
ai_debug_loners 0
ai_debug_looktargets 0
ai_debug_los 0
ai_debug_nav 0
//ai_debug_node_connect cmd
ai_debug_ragdoll_magnets 0
ai_debug_shoot_positions 0
ai_debug_speech 0
ai_debug_squads 0
ai_debug_think_ticks 0
ai_debugscriptconditions 0
ai_default_efficient 0
ai_drawbattlelines 0
//ai_drop_hint cmd
//ai_dump_hints cmd
ai_efficiency_override 0
ai_enable_fear_behavior 1
ai_expression_frametime 0
ai_expression_optimization 0
ai_fear_player_dist 720
ai_find_lateral_cover 1
ai_find_lateral_los 1
ai_follow_use_points 1
ai_follow_use_points_when_moving 1
ai_force_serverside_ragdoll 0
ai_frametime_limit 50
ai_lead_time 0
ai_LOS_mode 0
ai_moveprobe_debug 0
ai_moveprobe_jump_debug 0
ai_moveprobe_usetracelist 0
ai_navigator_generate_spikes 0
ai_navigator_generate_spikes_strength 8
ai_no_local_paths 0
ai_no_node_cache 0
ai_no_select_box 0
ai_no_steer 0
ai_no_talk_delay 0
ai_norebuildgraph 0
ai_path_adjust_speed_on_immediate_turns 1
ai_path_insert_pause_at_est_end 1
ai_path_insert_pause_at_obstruction 1
ai_post_frame_navigation 0
ai_radial_max_link_dist 512
ai_reaction_delay_alert 0
ai_reaction_delay_idle 0
ai_rebalance_thinks 1
ai_report_task_timings_on_limit 0
ai_sequence_debug 0
//ai_set_move_height_epsilon cmd
ai_setupbones_debug 0
ai_shot_bias 1
ai_shot_bias_max 1
ai_shot_bias_min -1
ai_shot_stats 0
ai_shot_stats_term 1000
ai_show_hull_attacks 0
ai_show_think_tolerance 0
ai_simulate_task_overtime 0
ai_spread_cone_focus_time 0
ai_spread_defocused_cone_multiplier 3
ai_spread_pattern_focus_time 0
ai_strong_optimizations 0
ai_strong_optimizations_no_checkstand 0
ai_task_pre_script 0
ai_test_moveprobe_ignoresmall 0
ai_think_limit_label 0
ai_use_clipped_paths 1
ai_use_efficiency 1
ai_use_frame_think_limits 1
ai_use_think_optimizations 1
ai_use_visibility_cache 1
ai_vehicle_avoidance 1
//air_density cmd
//alias cmd
ammo_338mag_max 30
ammo_357sig_max 52
ammo_45acp_max 100
ammo_50AE_max 35
ammo_556mm_box_max 200
ammo_556mm_max 90
ammo_57mm_max 100
ammo_762mm_max 90
ammo_9mm_max 120
ammo_buckshot_max 32
ammo_flashbang_max 2
ammo_hegrenade_max 1
ammo_smokegrenade_max 1
anim_3wayblend 1
//askconnect_accept cmd
async_allow_held_files 1
async_mode 0
//async_resume cmd
async_serialize 0
async_simulate_delay 0
//async_suspend cmd
//audit_save_in_memory cmd
autoaim_max_deflect 0
autoaim_max_dist 2160
//autobuy cmd
//autosave cmd
//autosavedangerous cmd
//autosavedangerousissafe cmd
//banid cmd
//banip cmd
//bench_end cmd
//bench_start cmd
//bench_upload cmd
//benchframe cmd
//bind cmd
//bind_mac cmd
//BindToggle cmd
//bloodspray cmd
//bot_add cmd
//bot_add_ct cmd
//bot_add_t cmd
bot_all_weapons
bot_allow_grenades 1
bot_allow_machine_guns 1
bot_allow_pistols 1
bot_allow_rifles 1
bot_allow_rogues 1
bot_allow_shotguns 1
bot_allow_snipers 1
bot_allow_sub_machine_guns 1
bot_auto_follow 0
bot_auto_vacate 1
bot_chatter "off"
bot_crouch 0
bot_debug 0
bot_debug_target 0
bot_defer_to_human 0
bot_difficulty 2
bot_dont_shoot 0
bot_eco_limit 2000
bot_flipout 0
bot_freeze 0
//bot_goto_mark cmd
bot_join_after_player 1
bot_join_delay 0
bot_join_team "any"
//bot_kick cmd
//bot_kill cmd
//bot_knives_only cmd
bot_loadout 0
bot_mimic 0
bot_mimic_yaw_offset 180
//bot_pistols_only cmd
bot_prefix ""
bot_profile_db "BotProfile.db"
bot_quota 64
bot_quota_mode "fill"
bot_randombuy 0
bot_show_battlefront 0
bot_show_nav 0
bot_show_occupy_time 0
//bot_snipers_only cmd
bot_stop 0
bot_traceview 0
bot_walk 0
bot_zombie 0
//box cmd
breakable_disable_gib_limit 0
breakable_multiplayer 1
//buddha cmd
budget_averages_window 30
budget_background_alpha 128
budget_bargraph_background_alpha 128
budget_bargraph_range_ms 16
budget_history_numsamplesvisible 100
budget_history_range_ms 66
budget_panel_bottom_of_history_fraction 0
budget_panel_height 384
budget_panel_width 512
budget_panel_x 0
budget_panel_y 50
budget_peaks_window 30
budget_show_averages 0
budget_show_history 1
budget_show_peaks 1
//budget_toggle_group cmd
//bug cmd
//bug_swap cmd
bugreporter_includebsp 1
bugreporter_uploadasync 0
//buildcubemaps cmd
building_cubemaps 0
//cache_print cmd
//cache_print_lru cmd
//cache_print_summary cmd
//callvote cmd
//cast_hull cmd
//cast_ray cmd
//ch_createairboat cmd
//ch_createjeep cmd
//changelevel cmd
//changelevel2 cmd
//changelevel_next cmd
cl_allowdownload 1
cl_allowupload 1
cl_clock_correction 1
cl_clock_correction_adjustment_max_amount 200
cl_clock_correction_adjustment_max_offset 90
cl_clock_correction_adjustment_min_offset 10
cl_clock_correction_force_server_tick 999
cl_clock_showdebuginfo 0
cl_clockdrift_max_ms 150
cl_clockdrift_max_ms_threadmode 0
cl_cmdrate 30
cl_debug_player_perf 0
cl_downloadfilter 0
cl_entityreport 0
cl_entityreport_sorted 0
cl_flushentitypacket 0
cl_forcepreload 0
//cl_fullupdate cmd
cl_ignorepackets 0
cl_language 0
cl_localnetworkbackdoor 1
cl_logofile 0
cl_playback_screenshots 0
//cl_precacheinfo cmd
cl_resend 6
cl_screenshotname 0
cl_show_connectionless_packet_warnings 0
cl_showdemooverlay 0
//cl_showents cmd
cl_showevents 0
cl_showpluginmessages 0
cl_soundfile 0
cl_timeout 30
cl_updaterate 20
//cl_view cmd
cl_voice_filter 0
//clear cmd
//clear_debug_overlays cmd
clientport 27005
closecaption 0
//cmd cmd
collision_shake_amp 0
collision_shake_freq 0
collision_shake_time 0
//collision_test cmd
//colorcorrectionui cmd
commentary 0
commentary_available 0
//commentary_cvarsnotchanging cmd
//commentary_finishnode cmd
con_drawnotify 1
con_enable 0
con_filter_enable 0
con_filter_text 0
con_filter_text_out 0
con_logfile 0
con_notifytime 8
con_nprint_bgalpha 50
con_nprint_bgborder 5
con_timestamp 0
con_trace 0
//connect cmd
contimes 8
coop 0
cpu_frequency_monitoring 0
//create_flashlight cmd
//CreatePredictionError cmd
//creditsdone cmd
//cs_make_vip cmd
cs_ShowStateTransitions -2
//cvarlist cmd
datacachesize 256
//dbghist_addline cmd
//dbghist_dump cmd
deathmatch 1
debug_materialmodifycontrol 0
debug_physimpact 0
debug_touchlinks 0
//debugsystemui cmd
decalfrequency 10
demo_avellimit 2000
demo_debug 0
demo_fastforwardfinalspeed 20
demo_fastforwardramptime 5
demo_fastforwardstartspeed 2
//demo_gototick cmd
demo_interplimit 4000
demo_interpolateview 1
demo_legacy_rollback 1
//demo_pause cmd
demo_pauseatservertick 0
demo_quitafterplayback 0
demo_recordcommands 1
//demo_resume cmd
//demo_setendtick cmd
//demo_timescale cmd
//demo_togglepause cmd
//demolist cmd
//demos cmd
//demoui cmd
//demoui2 cmd
//+demoui2 cmd
//-demoui2 cmd
developer 0
//devshots_nextmap cmd
//devshots_screenshot cmd
//differences cmd
//disconnect cmd
disp_dynamic 0
dispcoll_drawplane 0
displaysoundlist 0
download_debug 0
//drawcross cmd
//drawline cmd
dsp_automatic 0
dsp_db_min 80
dsp_db_mixdrop 0
dsp_dist_max 1440
dsp_dist_min 0
dsp_enhance_stereo 0
dsp_facingaway 0
dsp_mix_max 0
dsp_mix_min 0
dsp_off 0
dsp_player 0
//dsp_reload cmd
dsp_room 0
dsp_slow_cpu 0
dsp_spatial 40
dsp_speaker 50
dsp_vol_2ch 1
dsp_vol_4ch 0
dsp_vol_5ch 0
dsp_volume 1
dsp_water 14
dt_ShowPartialChangeEnts 0
dt_UsePartialChangeEnts 1
//dti_flush cmd
dtwarning 0
dtwatchclass 0
dtwatchent -1
dtwatchvar 0
//dump_entity_sizes cmd
//dump_globals cmd
//dump_panels cmd
//dump_x360_cfg cmd
//dump_x360_saves cmd
//dumpentityfactories cmd
//dumpeventqueue cmd
//dumpgamestringtable cmd
//dumplongticks cmd
//dumpsavedir cmd
//dumpstringtables cmd
//echo cmd
enable_debug_overlays 1
//endmovie cmd
//endround cmd
engine_no_focus_sleep 50
//ent_absbox cmd
//ent_attachments cmd
//ent_autoaim cmd
//ent_bbox cmd
//ent_cancelpendingentfires cmd
//ent_create cmd
ent_debugkeys 0
//ent_dump cmd
//ent_fire cmd
//ent_info cmd
//ent_keyvalue cmd
//ent_messages cmd
ent_messages_draw 0
//ent_name cmd
//ent_orient cmd
//ent_pause cmd
//ent_pivot cmd
//ent_rbox cmd
//ent_remove cmd
//ent_remove_all cmd
//ent_rotate cmd
//ent_setname cmd
//ent_show_response_criteria cmd
//ent_step cmd
//ent_teleport cmd
//ent_text cmd
//ent_viewoffset cmd
//envmap cmd
//escape cmd
//exec cmd
//exit cmd
//explode cmd
//explodevector cmd
//fadein cmd
//fadeout cmd
fast_fogvolume 0
filesystem_buffer_size 0
filesystem_max_stdio_read 16
filesystem_native 1
filesystem_report_buffered_io 0
filesystem_unbuffered_io 1
filesystem_use_overlapped_io 1
//find cmd
//find_ent cmd
//find_ent_index cmd
//findflags cmd
fire_absorbrate 3
fire_dmgbase 1
fire_dmginterval 1
fire_dmgscale 0
fire_extabsorb 5
fire_extscale 12
fire_growthrate 1
fire_heatscale 1
fire_incomingheatscale 0
fire_maxabsorb 50
firetarget cmd
fish_dormant 0
flex_expression 0
flex_looktime 5
flex_maxawaytime 1
flex_maxplayertime 7
flex_minawaytime 0
flex_minplayertime 5
flex_talk 0
//flush cmd
//flush_locked cmd
fog_enable_water_fog 1
//fogui cmd
//fov cmd
fps_max 300
free_pass_peek_debug 0
fs_monitor_read_from_pack 0
//fs_printopenfiles cmd
fs_report_sync_opens 0
//fs_warning_level cmd
fs_warning_mode 0
func_break_max_pieces 15
func_break_reduction_factor 0
func_breakdmg_bullet 0
func_breakdmg_club 1
func_breakdmg_explosive 1
g_debug_angularsensor 0
g_debug_constraint_sounds 0
g_debug_doors 0
g_debug_npc_vehicle_roles 0
g_debug_ragdoll_removal 0
g_debug_trackpather 0
g_debug_transitions 0
g_debug_vehiclebase 0
g_debug_vehicledriver 0
g_debug_vehicleexit 0
g_debug_vehiclesound 0
g_jeepexitspeed 100
g_Language 0
g_ragdoll_important_maxcount 2
g_ragdoll_maxcount 8
//gameui_activate cmd
//gameui_allowescape cmd
//gameui_allowescapetoshow cmd
//gameui_hide cmd
//gameui_preventescape cmd
//gameui_preventescapetoshow cmd
gameui_xbox 0
//give cmd
//givecurrentammo cmd
gl_amd_occlusion_workaround 1
//global_set cmd
//god cmd
//groundlist cmd
//hammer_update_entity cmd
//hammer_update_safe_entities cmd
//heartbeat cmd
//help cmd
//hideconsole cmd
hl2_episodic 0
host_flush_threshold 20
host_framerate 0
host_limitlocal 0
host_map 0
host_profile 0
//host_runofftime cmd
host_showcachemiss 0
host_ShowIPCCallCount 0
host_sleep 0
host_speeds 0
host_thread_mode 0
//host_timer_report cmd
host_timer_spin_ms 0
host_timescale 1
//host_writeconfig cmd
hostage_debug 0
hostip -1407344640.000
hostname ""
hostport 27015
hud_jeephint_numentries 10
//hurtme cmd
//incrementvar cmd
ip 0
joy_active -1
joy_axis_deadzone 0
joy_axisbutton_threshold 0
joy_gamecontroller_config 0
joy_xcontroller_found 0
//jpeg cmd
jpeg_quality 90
//kdtree_test cmd
//key_findbinding cmd
//key_listboundkeys cmd
//key_updatelayout cmd
//kick cmd
//kickall cmd
//kickid cmd
//kill cmd
//killserver cmd
//killvector cmd
//light_crosshair cmd
lightcache_maxmiss 2
//lightprobe cmd
//linefile cmd
//listdemo cmd
//listid cmd
//listip cmd
//listissues cmd
//listmodels cmd
//listRecentNPCSpeech cmd
//load cmd
//loader_dump_table cmd
loader_spew_info 0
loader_spew_info_ex 0
//log cmd
log_verbose_enable 0
log_verbose_interval 3
//logaddress_add cmd
//logaddress_del cmd
//logaddress_delall cmd
//logaddress_list cmd
lservercfgfile 0
//map cmd
//map_background cmd
//map_commentary cmd
//map_edit cmd
map_noareas 0
//map_setbombradius cmd
//map_showbombradius cmd
//map_showspawnpoints cmd
mapcyclefile 0
//maps cmd
mat_aaquality 0
mat_accelerate_adjust_exposure_down 3
mat_antialias 0
mat_bufferprimitives 1
mat_bumpbasis 0
mat_bumpmap 1
mat_colcorrection_disableentities 0
mat_color_projection 0
mat_colorcorrection 0
mat_compressedtextures 1
//mat_configcurrent cmd
//mat_crosshair cmd
//mat_crosshair_edit cmd
//mat_crosshair_explorer cmd
//mat_crosshair_printmaterial cmd
//mat_crosshair_reloadmaterial cmd
mat_debugalttab 0
mat_debugdepth 0
mat_debugdepthmode 0
mat_debugdepthval 128
mat_debugdepthvalmax 256
mat_depthbias_decal -262144
mat_depthbias_normal 0
mat_depthbias_shadowmap 0
mat_diffuse 1
mat_disable_fancy_blending 0
mat_disable_lightwarp 0
mat_drawflat 0
mat_drawTitleSafe 0
mat_dxlevel 0
mat_dynamic_tonemapping 1
//mat_edit cmd
//mat_enable_vrmode cmd
mat_envmapsize 128
mat_envmaptgasize 32
mat_excludetextures 0
mat_fastnobump 0
mat_fastspecular 1
mat_fillrate 0
mat_filterlightmaps 1
mat_filtertextures 1
mat_force_tonemap_scale 0
mat_forceaniso 1
mat_forcedynamic 0
mat_forcehardwaresync 1
mat_forcemanagedtextureintohardware 1
mat_fullbright 0
//mat_hdr_enabled cmd
mat_hdr_level 2
mat_hdr_manual_tonemap_rate 1
mat_hdr_tonemapscale 1
//mat_info cmd
mat_leafvis 0
mat_levelflush 1
mat_lightmap_pfms 0
mat_loadtextures 1
mat_luxels 0
mat_managedtextures 1
mat_max_worldmesh_vertices 65536
mat_maxframelatency 1
mat_measurefillrate 0
mat_mipmaptextures 1
mat_monitorgamma 2
mat_monitorgamma_tv_enabled 0
mat_monitorgamma_tv_exp 2
mat_monitorgamma_tv_range_max 255
mat_monitorgamma_tv_range_min 16
mat_morphstats 0
mat_motion_blur_enabled 0
mat_motion_blur_percent_of_screen_max 4
mat_norendering 0
mat_normalmaps 0
mat_normals 0
mat_parallaxmap 1
mat_phong 1
mat_picmip 0
mat_powersavingsmode 0
mat_proxy 0
mat_queue_mode -1
mat_queue_report 0
mat_reducefillrate 0
mat_reduceparticles 0
//mat_reloadallmaterials cmd
//mat_reloadmaterial cmd
//mat_reloadtextures cmd
mat_report_queue_status 0
//mat_reporthwmorphmemory cmd
//mat_reset_rendertargets cmd
mat_reversedepth 0
//mat_savechanges cmd
//mat_setvideomode cmd
mat_shadowstate 1
mat_show_ab_hdr 0
mat_show_texture_memory_usage 0
mat_showenvmapmask 0
mat_showlowresimage 0
//mat_showmaterials cmd
//mat_showmaterialsverbose cmd
mat_showmiplevels 0
//mat_showtextures cmd
mat_slopescaledepthbias_decal 0
mat_slopescaledepthbias_normal 0
mat_slopescaledepthbias_shadowmap 16
mat_softwarelighting 0
mat_softwareskin 0
mat_specular 1
mat_spew_on_texture_size 0
mat_supportflashlight -1
mat_surfaceid 0
mat_surfacemat 0
mat_texture_list 0
//+mat_texture_list cmd
//-mat_texture_list cmd
mat_texture_list_all 0
mat_texture_list_content_path 0
mat_texture_list_txlod cmd
//mat_texture_list_txlod_sync cmd
mat_texture_list_view 1
//mat_texture_save_fonts cmd
mat_texture_tracking 0
mat_tonemap_algorithm 1
mat_tonemapping_occlusion_use_stencil 0
mat_trilinear 0
mat_use_compressed_hdr_textures 1
mat_visualize_dof 0
mat_vrmode_adapter -1
mat_vsync 0
mat_wireframe 0
matchmakingport 27025
//maxplayers cmd
//mem_compact cmd
//mem_dump cmd
mem_dumpstats 0
//mem_eat cmd
mem_force_flush 0
mem_max_heapsize 256
mem_max_heapsize_dedicated 64
mem_min_heapsize 48
mem_periodicdumps 0
//mem_test cmd
mem_test_each_frame 0
mem_test_every_n_seconds 0
//mem_vcollide cmd
//memory cmd
//memory_diff cmd
//memory_list cmd
//memory_mark cmd
//memory_status cmd
//minisave cmd
//mission_list cmd
//mission_show cmd
mm_max_spectators 4
//mm_message cmd
mm_minplayers 2
//mm_select_session cmd
//mm_session_info cmd
//mm_stats cmd
mod_forcedata 1
mod_forcetouchdata 1
mod_load_anims_async 0
mod_load_fakestall 0
mod_load_mesh_async 0
mod_load_showstall 0
mod_load_vcollide_async 0
mod_lock_mdls_on_load 0
mod_test_mesh_not_available 0
mod_test_not_available 0
mod_test_verts_not_available 0
mod_touchalldata 1
mod_trace_load 0
//model_list cmd
motdfile 0
motdfile_text 0
//movie_fixwave cmd
mp_allowNPCs 1
mp_allowspectators 1
mp_autocrosshair 1
mp_autokick 1
mp_autoteambalance 1
mp_bonusroundtime 15
mp_bonusroundtime_final 15
mp_buytime 1
mp_c4timer 35
mp_chattime 10
mp_clan_ready_signal 0
mp_clan_readyrestart 0
mp_decals 200
mp_defaultteam 0
//mp_disable_autokick cmd
mp_disable_respawn_times 0
//mp_dump_timers cmd
mp_enableroundwaittime 1
mp_fadetoblack 0
mp_falldamage 0
mp_flashlight 0
mp_footsteps 1
mp_forceautoteam 0
mp_forcecamera 0
mp_forcerespawn 1
//mp_forcerespawnplayers cmd
//mp_forcewin cmd
mp_fraglimit 0
mp_freezetime 6
mp_friendlyfire 0
mp_holiday_nogifts 0
mp_hostagepenalty 13
mp_humanteam "any"
mp_ignore_round_win_conditions 0
mp_limitteams 2
mp_logdetail 3
mp_mapcycle_empty_timeout_seconds 0
mp_match_end_at_timelimit 0
mp_maxrounds 0
mp_playerid 0
mp_playerid_delay 0
mp_playerid_hold 0
mp_respawnwavetime 10
mp_restartgame 0
mp_restartgame_immediate 0
mp_restartround 0
mp_round_restart_delay 5
mp_roundtime 9
//mp_scrambleteams cmd
mp_scrambleteams_auto 1
mp_scrambleteams_auto_windifference 2
mp_show_voice_icons 1
mp_spawnprotectiontime 5
mp_stalemate_enable 0
mp_stalemate_meleeonly 0
mp_stalemate_timelimit 240
mp_startmoney 800
//mp_switchteams cmd
mp_teamlist "hgrunt;scientist"
mp_teamoverride 1
mp_teamplay 0
mp_teams_unbalance_limit 1
mp_timelimit 180
mp_tkpunish 0
mp_tournament 0
mp_tournament_allow_non_admin_restart 1
//mp_tournament_restart cmd
mp_waitingforplayers_cancel 0
mp_waitingforplayers_restart 0
mp_waitingforplayers_time 0
mp_weaponstay 0
mp_winlimit 0
//multvar cmd
name 0
//namelockid cmd
//nav_add_to_selected_set cmd
//nav_add_to_selected_set_by_id cmd
//nav_analyze cmd
nav_area_bgcolor 0
nav_area_max_size 50
//nav_avoid cmd
//nav_begin_area cmd
//nav_begin_deselecting cmd
//nav_begin_drag_deselecting cmd
//nav_begin_drag_selecting cmd
//nav_begin_selecting cmd
//nav_begin_shift_xy cmd
//nav_build_ladder cmd
//nav_check_connectivity cmd
//nav_check_file_consistency cmd
//nav_check_floor cmd
//nav_check_stairs cmd
//nav_chop_selected cmd
//nav_clear_attribute cmd
//nav_clear_selected_set cmd
//nav_clear_walkable_marks cmd
//nav_compress_id cmd
//nav_connect cmd
nav_coplanar_slope_limit 0
nav_coplanar_slope_limit_displacement 0
nav_corner_adjust_adjacent 18
//nav_corner_lower cmd
//nav_corner_place_on_ground cmd
//nav_corner_raise cmd
//nav_corner_select cmd
nav_create_area_at_feet 0
nav_create_place_on_ground 0
//nav_crouch cmd
nav_debug_blocked 0
//nav_delete cmd
//nav_delete_marked cmd
//nav_disconnect cmd
//nav_disconnect_outgoing_oneways cmd
nav_displacement_test 10000
//nav_dont_hide cmd
nav_drag_selection_volume_zmax_offset 32
nav_drag_selection_volume_zmin_offset 32
nav_draw_limit 500
//nav_dump_selected_set_positions cmd
nav_edit 0
//nav_end_area cmd
//nav_end_deselecting cmd
//nav_end_drag_deselecting cmd
//nav_end_drag_selecting cmd
//nav_end_selecting cmd
//nav_end_shift_xy cmd
//nav_flood_select cmd
//nav_gen_cliffs_approx cmd
//nav_generate cmd
nav_generate_fencetops 1
nav_generate_fixup_jump_areas 1
//nav_generate_incremental cmd
nav_generate_incremental_range 2000
nav_generate_incremental_tolerance 0
//nav_jump cmd
//nav_ladder_flip cmd
//nav_load cmd
//nav_lower_drag_volume_max cmd
//nav_lower_drag_volume_min cmd
//nav_make_sniper_spots cmd
//nav_mark cmd
//nav_mark_attribute cmd
//nav_mark_unnamed cmd
//nav_mark_walkable cmd
nav_max_view_distance 6000
nav_max_vis_delta_list_length 64
//nav_merge cmd
//nav_merge_mesh cmd
//nav_no_hostages cmd
//nav_no_jump cmd
//nav_place_floodfill cmd
//nav_place_list cmd
//nav_place_pick cmd
//nav_place_replace cmd
//nav_place_set cmd
nav_potentially_visible_dot_tolerance 0
//nav_precise cmd
nav_quicksave 1
//nav_raise_drag_volume_max cmd
//nav_raise_drag_volume_min cmd
//nav_recall_selected_set cmd
//nav_remove_from_selected_set cmd
//nav_remove_jump_areas cmd
nav_restart_after_analysis 1
//nav_run cmd
//nav_save cmd
//nav_save_selected cmd
//nav_select_blocked_areas cmd
//nav_select_damaging_areas cmd
//nav_select_half_space cmd
//nav_select_invalid_areas cmd
//nav_select_larger_than cmd
//nav_select_obstructed_areas cmd
//nav_select_orphans cmd
//nav_select_overlapping cmd
//nav_select_radius cmd
//nav_select_stairs cmd
nav_selected_set_border_color 100
nav_selected_set_color 255
//nav_set_place_mode cmd
//nav_shift cmd
nav_show_approach_points 0
nav_show_area_info 0
nav_show_compass 0
nav_show_continguous 0
nav_show_danger 0
//nav_show_dumped_positions cmd
nav_show_func_nav_avoid 0
nav_show_func_nav_prefer 0
nav_show_func_nav_prerequisite 0
nav_show_light_intensity 0
nav_show_node_grid 0
nav_show_node_id 0
nav_show_nodes 0
nav_show_player_counts 0
nav_show_potentially_visible 0
//nav_simplify_selected cmd
nav_slope_limit 0
nav_slope_tolerance 0
nav_snap_to_grid 0
nav_solid_props 0
//nav_splice cmd
//nav_split cmd
nav_split_place_on_ground 0
//nav_stand cmd
//nav_stop cmd
//nav_store_selected_set cmd
//nav_strip cmd
//nav_subdivide cmd
nav_test_node 0
nav_test_node_crouch 0
nav_test_node_crouch_dir 4
//nav_test_stairs cmd
//nav_toggle_deselecting cmd
//nav_toggle_in_selected_set cmd
//nav_toggle_place_mode cmd
//nav_toggle_place_painting cmd
//nav_toggle_selected_set cmd
//nav_toggle_selecting cmd
//nav_transient cmd
//nav_unmark cmd
//nav_update_blocked cmd
//nav_update_lighting cmd
nav_update_visibility_on_edit 0
//nav_use_place cmd
//nav_walk cmd
//nav_warp_to_mark cmd
//nav_world_center cmd
nb_allow_avoiding 1
nb_allow_climbing 1
nb_allow_gap_jumping 1
nb_blind 0
//nb_command cmd
//nb_debug cmd
nb_debug_climbing 0
//nb_debug_filter cmd
nb_debug_history 1
nb_debug_known_entities 0
//nb_delete_all cmd
//nb_force_look_at cmd
nb_goal_look_ahead_range 50
nb_head_aim_resettle_angle 100
nb_head_aim_resettle_time 0