Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. //set up cfg folder name it autoexec.cfg
  2.  
  3. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  4. rate "128000"
  5. cl_cmdrate "128"
  6. cl_updaterate "128"
  7. cl_interp_ratio "1"
  8. cl_interp "0"
  9. cl_lagcompensation "1"
  10. cl_pred_optimize "2"
  11. cl_predict "1"
  12. cl_predictweapons "1"
  13. cl_smooth "0"
  14. cl_smoothtime "0"
  15.  
  16. echo "Rate Settings loaded"
  17.  
  18. //Sound - less delayed, better sound
  19. windows_speaker_config "1"
  20. snd_mixahead "0.05"
  21. snd_musicvolume "0"
  22. snd_headphone_pan_exponent "2"
  23. snd_headphone_pan_radial_weight "1"
  24. snd_rear_headphone_position "90"
  25. bind "pgup" "voice_enable 1" // this lets you turn voice on and off on numpad minus
  26. bind "pgdn" "voice_enable 0"
  27.  
  28. echo "Sound Settings loaded"
  29.  
  30.  
  31. // smoke jump throws
  32.  
  33. alias "+jumpthrow" "+jump;-attack"
  34. alias "-jumpthrow" "-jump"
  35. bind "t" "+jumpthrow"
  36.  
  37. // Mouse commands
  38. m_rawinput "1"
  39. m_mouseaccel1 "0"
  40. m_mouseaccel2 "0"
  41.  
  42. //Radar - radar settings + adjustment on numpad enter
  43. cl_radar_scale "0.4"
  44. cl_radar_rotate "1"
  45. cl_radar_always_centered "1"
  46. cl_radar_scale "0.5"
  47. cl_radar_icon_scale_min ".5"
  48. bind "Home" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  49.  
  50. // end smoke jump throws
  51.  
  52. bind "End" "toggle net_graph 0 1"
  53. cl_autowepswitch "0"
  54. hud_showtargetid "0"
  55. fps_max "300"
  56. net_graph "1"
  57. net_allow_multicast "1"
  58. net_graphheight "100"
  59. net_graphmsecs "400"
  60. net_graphpos "1"
  61. net_graphproportionalfont "0"
  62. net_graphshowinterp "1"
  63. net_graphshowlatency "1"
  64. net_graphsolid "1"
  65. net_graphtext "1"
  66. net_maxroutable "1200"
  67. net_scale "5"
  68. net_steamcnx_allowrelay "1"
  69. mm_dedicated_search_maxping "50"
  70. mm_session_search_ping_limit "50"
  71. sensitivity "2" //400 DPI
  72.  
  73. // Buy Bind
  74. //alias m4a1 "buy M4A1; buy ak47"
  75. //alias m4a4 "buy M4A1 1"
  76. //alias "+m4switch" "bind kp_slash m4a4"
  77. //alias "-m4switch" "bind kp_slash m4a1"
  78. //bind "alt" "+m4switch"
  79. bind "kp_slash" "buy m4a1; buy ak47;"
  80. bind "kp_multiply" "buy galilar; buy famas;"
  81. bind "kp_minus" "buy p90;"
  82. bind "kp_home" "buy awp;"
  83. bind "kp_uparrow" "buy tec9; buy fiveseven;"
  84. bind "kp_pgup" "buy p250;"
  85. bind "kp_plus" "buy ak47; buy m4a1; buy molotov; buy incgrenade; buy hegrenade; buy smokegrenade; buy flashbang; buy flashbang; buy vesthelm; buy vest; buy defuser;"
  86. bind "kp_leftarrow" " buy vest;"
  87. bind "kp_5" " buy vesthelm; buy vest;"
  88. bind "kp_rightarrow" " buy defuser;"
  89. bind "kp_end" " buy incgrenade; buy molotov;"
  90. bind "kp_downarrow" " buy flashbang;"
  91. bind "kp_pgdn" "buy flashbang;buy flashbang;"
  92. bind "kp_ins" " buy smokegrenade;"
  93. bind "kp_del" " buy hegrenade;"
  94. bind "kp_enter" "buy galilar; buy famas; buy vest;"
  95.  
  96. // KZ Bind
  97. alias kzon "bind mwheeldown +jump; bind k kzoff"
  98. alias kzoff "bind mwheeldown invnext; bind k kzon"
  99. bind k kzon
  100.  
  101. hud_showtargetid 1
  102.  
  103. echo "Autoexec Config loaded" // make sure this autoexec does its fine
  104. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement