Advertisement
Guest User

szK autoexec

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