Advertisement
zogo3000

Config

Apr 29th, 2018
21,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. // ADJUSTABLE VOLUME 10 levels PAGE UP(+)/PAGE DOWN(-)
  2.  
  3. bind "pgup" "incrementvar volume 0 1 0.1"
  4. bind "pgdn" "incrementvar volume 0 1 -0.1"
  5.  
  6.  
  7. //Jumpthrow bind
  8. alias +jumpthrow "+jump;-attack"
  9. alias -jumpthrow "-jump"
  10. bind "q" "+jumpthrow"
  11.  
  12. //Auto Weapon Switch
  13. cl_autowepswitch "0"
  14.  
  15. //Bobbing and Movement Shifting - remove all the dumb view bob
  16. cl_viewmodel_shift_left_amt "0"
  17. cl_viewmodel_shift_right_amt "0"
  18. cl_bob_lower_amt "0"
  19. cl_bobamt_lat "0"
  20. cl_bobamt_vert "0"
  21. cl_showloadout "1"
  22. cl_bobcycle "1"
  23.  
  24. //Bypass OS Interface & Acceleration - yes
  25. m_rawinput "1"
  26. m_mouseaccel1 "0"
  27. m_mouseaccel2 "0"
  28.  
  29. //Deathcam - optional again
  30. cl_disablefreezecam "1"
  31.  
  32. //HUD - adjust for preference i guess
  33. hud_scaling ".95"
  34. hud_showtargetid "1"
  35. bind "TAB" "+ng"; //
  36. alias "+ng" "+showscores; net_graph 1" // these 3 = onyl show netgraph when tab/scoreboard is held
  37. alias "-ng" "-showscores; net_graph 0" //
  38. cl_righthand 0
  39.  
  40. //Max Ping - adjust for preference
  41. mm_dedicated_search_maxping "50" // Lowers max acceptable ping for mm
  42.  
  43. //disabled annoying MOTDs
  44. cl_disablehtmlmotd "1"
  45. cl_downloadfilter "nosounds"
  46.  
  47. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  48. cl_forcepreload "1"
  49. cl_interp "0"
  50. cl_interp_ratio "1"
  51. cl_cmdrate "128"
  52. cl_updaterate "128"
  53. rate "128000"
  54.  
  55. //Radar - radar settings + adjustment on numpad enter
  56. cl_radar_rotate "1"
  57. cl_radar_always_centered "0"
  58. cl_radar_scale "0.32"
  59. cl_radar_icon_scale_min "0.5"
  60. bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  61.  
  62. //Sound - less delayed, better sound
  63. windows_speaker_config "1"
  64. snd_mixahead "0.05"
  65. snd_musicvolume "0"
  66. snd_headphone_pan_exponent "2"
  67. snd_headphone_pan_radial_weight "1"
  68. snd_rear_headphone_position "90"
  69. bind "kp_minus" "toggle voice_enable 1 0" // this lets you turn voice on and off on numpad minus
  70. voice_scale 0.67
  71.  
  72. //CROSSHAIR CVARS
  73. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  74. cl_crosshairstyle 4
  75. cl_crosshairsize 2.5
  76. cl_crosshairthickness 0.5
  77. cl_crosshairgap 3
  78. cl_crosshair_drawoutline 1
  79. cl_crosshair_outlinethickness 0.6
  80. cl_crosshairdot 1
  81. cl_crosshair_t 0
  82. cl_crosshaircolor 5
  83. cl_crosshaircolor_r 255
  84. cl_crosshaircolor_g 255
  85. cl_crosshaircolor_b 0
  86. cl_crosshairalpha 205
  87. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  88.  
  89. echo "Autoexec Config loaded" // make sure this autoexec does its fine
  90. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement