Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. //Credits to "ISleepTheDayAway" for the basic autoexec, edited and tweaked by me
  2.  
  3. //bhop mode switcher thing - optional, can remove
  4. bind MWHEELDOWN +jump
  5. bind MWHEELUP +jump
  6.  
  7. //Weapon-Knife Easy Switcher - optional, really, but i like easy knife access
  8. //bind "q" "knife"
  9. //alias "knife" "slot3; bind q primary"
  10. //alias "primary" "lastinv; bind q knife"
  11. //bind "1" "slot1; bind q knife"
  12. //bind "2" "slot2; bind q knife"
  13. //bind "3" "slot3; bind q primary"
  14. //bind "4" "slot4; bind q knife"
  15. //bind "5" "slot5; bind q knife"
  16. //bind "mouse4" "slot4"
  17.  
  18. //Auto Weapon Switch
  19. cl_autowepswitch "0" // we dont want to pick up & switch to a rifle up if we're in the middle of firing our pistol
  20.  
  21. //Bobbing and Movement Shifting - remove all the dumb view bob
  22. cl_viewmodel_shift_left_amt "0"
  23. cl_viewmodel_shift_right_amt "0"
  24. cl_bob_lower_amt "0"
  25. cl_bobamt_lat "0"
  26. cl_bobamt_vert "0"
  27. cl_showloadout "1"
  28. cl_bobcycle "1"
  29.  
  30. //Bypass OS Interface & Acceleration - yes
  31. m_rawinput "1"
  32. m_mouseaccel1 "0"
  33. m_mouseaccel2 "0"
  34. m_mousespeed "0"
  35.  
  36. //Crosshair - adjust for preference or make your own, i just like this one, looks a bit like this:
  37.  
  38. cl_crosshairalpha "255"
  39. cl_crosshairusealpha "1"
  40. cl_crosshaircolor "2"
  41. cl_crosshaircolor_b "255"
  42. cl_crosshaircolor_r "255"
  43. cl_crosshaircolor_g "255"
  44. cl_crosshairdot "0"
  45. cl_crosshairgap "-1.5"
  46. cl_crosshairsize "2.5"
  47. cl_crosshairstyle "4"
  48. cl_crosshairthickness "1"
  49. cl_fixedcrosshairgap "-2"
  50. cl_crosshair_drawoutline "1"
  51. cl_crosshair_outlinethickness "1"
  52.  
  53. //Deathcam - optional again
  54. cl_disablefreezecam "1"
  55.  
  56. //Gun Tracers
  57. r_drawtracers_firstperson "1"
  58.  
  59. //Help Messages - you dont need these pussy
  60. gameinstructor_enable "0"
  61. cl_autohelp "0"
  62. cl_showhelp "0"
  63.  
  64. //HUD - adjust for preference i guess
  65. hud_scaling ".95"
  66. hud_showtargetid "1"
  67. cl_radar_scale "0.5"
  68. bind "TAB" "+ng"; //
  69. alias "+ng" "+showscores; net_graph 1" // these 3 = onyl show netgraph when tab/scoreboard is held
  70. alias "-ng" "-showscores; net_graph 0" //
  71.  
  72. //Max Ping - adjust for preference
  73. mm_dedicated_search_maxping "150" // we dont wanna get put in a server where we have 200 ping
  74.  
  75. //MOTD - because fuck pinion
  76. cl_disablehtmlmotd "1"
  77. cl_downloadfilter "nosounds"
  78.  
  79.  
  80. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  81. cl_forcepreload "1"
  82. cl_interp "0"
  83. cl_interp_ratio "1"
  84. cl_cmdrate "128"
  85. cl_updaterate "128"
  86. rate "64000"
  87.  
  88. //Radar - radar settings + adjustment on numpad enter
  89. cl_radar_scale "0.3"
  90. cl_radar_rotate "0"
  91. cl_radar_always_centered "0"
  92. cl_radar_scale "0.32"
  93. cl_radar_icon_scale_min ".5"
  94. bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  95.  
  96. //Sound - less delayed, better sound
  97. windows_speaker_config "1"
  98. snd_mixahead "0.05"
  99. snd_musicvolume "0"
  100. snd_headphone_pan_exponent "2"
  101. snd_headphone_pan_radial_weight "1"
  102. snd_rear_headphone_position "90"
  103. bind "kp_minus" "toggle voice_enable 1 0" // this lets you turn voice on and off on numpad minus
  104.  
  105. echo "Autoexec Config loaded" // make sure this autoexec does its fine
  106. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement