Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. //Credits to "ISleepTheDayAway" for the basic autoexec, edited and tweaked by me
  2.  
  3. //Weapon-Knife Easy Switcher - optional, really, but i like easy knife access
  4. alias"knife" "slot3; bind q slot1"
  5. bind "q" "knife"
  6. bind "mwheelup" "slot1; bind q knife"
  7. bind "mwheeldown" "slot2; bind q knife"
  8. bind "mouse5" "use weapon_flashbang; bind q knife"
  9. bind "mouse4" "use weapon_smokegrenade; bind q knife"
  10.  
  11. //Auto Weapon Switch
  12. cl_autowepswitch "0" // we dont want to pick up & switch to a rifle up if we're in the middle of firing our pistol
  13.  
  14. //Bobbing and Movement Shifting - remove all the dumb view bob
  15. cl_viewmodel_shift_left_amt "0"
  16. cl_viewmodel_shift_right_amt "0"
  17. cl_bob_lower_amt "0"
  18. cl_bobamt_lat "0"
  19. cl_bobamt_vert "0"
  20. cl_showloadout "1"
  21. cl_bobcycle "1"
  22.  
  23. //Bypass OS Interface & Acceleration - yes
  24. m_rawinput "1"
  25. m_mouseaccel1 "0"
  26. m_mouseaccel2 "0"
  27.  
  28. //Crosshair - adjust for preference or make your own, i just like this one, looks a bit like this: http://i.imgur.com/AKlyekd.png
  29.  
  30. cl_crosshair_drawoutline "1"
  31. cl_crosshair_dynamic_maxdist_splitratio "0.35"
  32. cl_crosshair_dynamic_splitalpha_innermod "1"
  33. cl_crosshair_dynamic_splitalpha_outermod "0.5"
  34. cl_crosshair_dynamic_splitdist "7"
  35. cl_crosshair_outlinethickness "1"
  36. cl_crosshair_sniper_width "1"
  37. cl_crosshairalpha "200"
  38. cl_crosshaircolor "5"
  39. cl_crosshaircolor_b "255"
  40. cl_crosshaircolor_g "255"
  41. cl_crosshaircolor_r "0"
  42. cl_crosshairdot "0"
  43. cl_crosshairgap "-2.500000"
  44. cl_crosshairgap_useweaponvalue "0"
  45. cl_crosshairscale "0"
  46. cl_crosshairsize "2.000000"
  47. cl_crosshairstyle "3"
  48. cl_crosshairthickness "0.700000"
  49. cl_crosshairusealpha "1"
  50. cl_fixedcrosshairgap "3"
  51.  
  52.  
  53. //Gun Tracers - these are bad, really misleading
  54. r_drawtracers_firstperson "0"
  55.  
  56. //Help Messages - you dont need these
  57. gameinstructor_enable "0"
  58. cl_autohelp "0"
  59. cl_showhelp "0"
  60.  
  61. //HUD - adjust for preference i guess
  62. hud_scaling ".95"
  63. hud_showtargetid "1"
  64. bind "TAB" "+ng"; //
  65. alias "+ng" "+showscores; net_graph 1" // these 3 = only show netgraph when tab/scoreboard is held
  66. alias "-ng" "-showscores; net_graph 0" //
  67.  
  68. //Max Ping - adjust for preference
  69. mm_dedicated_search_maxping "100" // we dont wanna get put in a server where we have 200 ping
  70.  
  71. //MOTD - because ???? pinion
  72. cl_disablehtmlmotd "0"
  73. cl_downloadfilter "nosounds"
  74.  
  75.  
  76. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  77. cl_forcepreload "1"
  78. cl_interp "0"
  79. cl_interp_ratio "1"
  80. cl_cmdrate "128"
  81. cl_updaterate "128"
  82. rate "128000"
  83.  
  84. //Radar - radar settings + adjustment on numpad enter
  85. cl_radar_rotate "1"
  86. cl_radar_always_centered "1"
  87. cl_radar_scale "0.65"
  88. cl_radar_icon_scale_min "0.5"
  89. bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  90.  
  91. //Sound - less delayed, better sound
  92. windows_speaker_config "1"
  93. snd_mixahead "0.05"
  94. snd_musicvolume "0"
  95. snd_headphone_pan_exponent "2"
  96. snd_headphone_pan_radial_weight "1"
  97. snd_rear_headphone_position "90"
  98. bind "kp_minus" "toggle voice_enable 1 0" // this lets you turn voice on and off on numpad minus
  99.  
  100. //Jumpthrow - better smokes
  101. alias +jumpup "+jump"
  102. alias -jumpup "-jump"
  103. alias +throwup "+attack"
  104. alias -throwup "-attack"
  105. bind t +jumpup
  106. bind h -throwup
  107.  
  108. //Molotov and HE
  109. bind f "use weapon_molotov; use weapon_incgrenade; bind q knife"
  110. bind v "use weapon_hegrenade; bind q knife"
  111.  
  112. //Mouse Scope Sense
  113. zoom_sensitivity_ratio_mouse "0.818933027098955175"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement