Advertisement
Guest User

empty autoexec.cfg

a guest
Jan 14th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. // empty's Config
  2.  
  3. // find Bomb
  4. alias +bombfind "+use;gameinstructor_enable 1;cl_clearhinthistory"
  5. alias -bombfind "-use;gameinstructor_enable 0;cl_clearhinthistory"
  6. bind "F1" "+bombfind"
  7.  
  8. // spin bind for increased sensitivity on hold
  9. alias "+spin" "m_yaw 0.09"
  10. alias "-spin" "m_yaw 0.022"
  11. bind "mouse4" "+spin"
  12.  
  13. // keep decals off map (blood, etc.)
  14. bind "w" "+forward; r_cleardecals"
  15. bind "a" "+moveleft; r_cleardecals"
  16. bind "d" "+moveright; r_cleardecals"
  17. bind "s" "+back; r_cleardecals"
  18.  
  19. // fast drop bomb bind
  20. bind "]" "use weapon_c4; drop;say_team Bomb Dropped!"
  21.  
  22. // jumpthrow bind
  23. alias "+jumpthrow" "+jump;-attack"
  24. alias "-jumpthrow" "-jump"
  25. bind "x" "+jumpthrow"
  26.  
  27. // show net graph on scoreboard
  28. net_graph "1"
  29. net_graphheight "9999"
  30. bind "TAB" "+scorenet"
  31. alias "+scorenet" "+showscores; net_graphheight 0"
  32. alias "-scorenet" "-showscores; net_graphheight 9999"
  33.  
  34. // louder game while walking
  35. alias +incvol "incrementvar volume 0 2 0.5;+speed";alias -incvol "incrementvar volume 0 2 -0.5;-speed";bind SHIFT +incvol
  36.  
  37. // zoom radar bind
  38. bind "o" "incrementvar cl_radar_scale 0 1 0.25"
  39.  
  40. // set rates (MM will force cmdrate and updaterate)
  41. rate "128000"
  42. cl_cmdrate "128"
  43. cl_updaterate "128"
  44. cl_interp "0"
  45. cl_interp_ratio "1"
  46.  
  47. // center radar
  48. cl_radar_always_centered 1
  49.  
  50. // display damage after death
  51. con_filter_text "Damage"
  52. con_filter_text_out "Player:"
  53. con_filter_enable 2
  54. developer 1
  55.  
  56. // toggle voice_enable for clutches
  57. bindToggle "\" "voice_enable"
  58.  
  59. // miscellaneous settings
  60. fps_max 999
  61. r_drawparticles 0
  62. muzzleflash_light 0
  63. r_eyemove 0
  64. r_gloss 0
  65. func_break_max_pieces 0
  66. mat_disable_bloom 1
  67. mm_dedicated_search_maxping 50
  68. cl_downloadfilter nosounds
  69. mat_queue_mode "-1"
  70. windows_speaker_config "2"
  71. snd_mixahead "0.05"
  72.  
  73. clear
  74. echo "Config: Loaded (empty)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement