Advertisement
Guest User

for kerk

a guest
Aug 1st, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 KB | None | 0 0
  1. //Auto Weapon Switch
  2. cl_autowepswitch "0" // we dont want to pick up & switch to a rifle up if we're in the middle of firing our pistol
  3.  
  4.  
  5.  
  6. //Bypass OS Interface & Acceleration - yes
  7. m_rawinput "1"
  8. m_mouseaccel1 "0"
  9. m_mouseaccel2 "0"
  10. sensitivity 1
  11.  
  12.  
  13. //fastthrow grenades
  14. bind "MOUSE4" "use weapon_knife; use weapon_flashbang"
  15. bind "MOUSE5" "use weapon_knife; use weapon_smokegrenade"
  16. bind "4" "use weapon_knife; use weapon_hegrenade"
  17.  
  18. //jumpthrow grenades
  19. unbind "h"
  20. alias "+jumpthrow" "+jump;-attack"
  21. alias "-jumpthrow" "-jump"
  22. bind "h" "+jumpthrow"
  23.  
  24. //display Damage - press f5 when starting game
  25. alias displaydamage "displaydamage_on"
  26. alias displaydamage_on "con_filter_text Damage Given To; con_filter_text_out Player:; con_filter_enable 2; developer 1; playvol buttons\blip1 0.5; alias displaydamage "displaydamage_off""
  27. alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2 0.5; alias displaydamage "displaydamage_on""
  28. bind "f5" "displaydamage"
  29.  
  30. //quickchange
  31. alias +knife "slot3"
  32. alias -knife "slot2; slot1"
  33. bind q +knife
  34.  
  35. //Bobbing and Movement Shifting - remove all the dumb view bob
  36. cl_viewmodel_shift_left_amt "0"
  37. cl_viewmodel_shift_right_amt "0"
  38. cl_bob_lower_amt "0"
  39. cl_bobamt_lat "0"
  40. cl_bobamt_vert "0"
  41. cl_showloadout "1"
  42. cl_bobcycle "1"
  43. viewmodel_offset_x -1
  44. viewmodel_offset_y 2
  45. viewmodel_offset_z -2
  46. viewmodel_fov 68
  47.  
  48.  
  49. //Crosshair - adjust for preference or make your own, i just like this one, looks a bit like this: http://i.imgur.com/AKlyekd.png
  50.  
  51. cl_crosshairalpha "255"
  52. cl_crosshaircolor "5"
  53. cl_crosshaircolor_b "255"
  54. cl_crosshaircolor_r "240"
  55. cl_crosshaircolor_g "0"
  56. cl_crosshairdot "1"
  57. cl_crosshairgap "2"
  58. cl_crosshairsize "3"
  59. cl_crosshairstyle "2"
  60. cl_crosshairusealpha "1"
  61. cl_crosshairthickness "0.5"
  62. cl_fixedcrosshairgap "1.5"
  63. cl_crosshair_dynamic_maxdist_splitratio "0.2"
  64. cl_crosshair_dynamic_splitdist "1"
  65. cl_crosshair_dynamic_splitalpha_innermod "1"
  66. cl_crosshair_dynamic_splitalpha_outermod "40"
  67. cl_crosshairdrawoutline 0.5
  68.  
  69.  
  70.  
  71.  
  72. //Deathcam - optional again
  73. cl_disablefreezecam "1"
  74.  
  75. //Gun Tracers - these are bad, really misleading
  76. r_drawtracers_firstperson "0"
  77.  
  78. //Help Messages - you dont need these
  79. gameinstructor_enable "0"
  80. cl_autohelp "0"
  81. cl_showhelp "0"
  82.  
  83. //HUD - adjust for preference i guess
  84. hud_scaling ".95"
  85. hud_showtargetid "1"
  86. bind "TAB" "+ng"; //
  87. alias "+ng" "+showscores; net_graph 1" // these 3 = onyl show netgraph when tab/scoreboard is held
  88. alias "-ng" "-showscores; net_graph 0" //
  89.  
  90. //Max Ping - adjust for preference
  91. mm_dedicated_search_maxping "100" // we dont wanna get put in a server where we have 200 ping
  92.  
  93. //MOTD - because ♥♥♥♥ pinion
  94. cl_disablehtmlmotd "1"
  95. cl_downloadfilter "nosounds"
  96.  
  97.  
  98. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  99. //cl_cmdrate 128
  100. //cl_updaterate 128
  101. //cl_interp_ratio 2
  102. //cl_interp 0
  103. //fps_max 120
  104.  
  105. rate "821288"
  106. cl_cmdrate "128"
  107. cl_updaterate "128"
  108. cl_interpolate "1"
  109. cl_interp_ratio "1"
  110. cl_interp "0.01364"
  111. cl_updatevisibility "1"
  112. cl_lagcompensation "1"
  113. cl_predict "1"
  114. cl_predictweapons "1"
  115. cl_timeout "999999"
  116.  
  117. //alttab out faster
  118. engine_no_focus_sleep 0
  119.  
  120.  
  121. //Radar - radar settings + adjustment on numpad enter
  122. cl_radar_rotate "1"
  123. cl_radar_always_centered "1"
  124. cl_radar_scale "0.32"
  125. cl_radar_icon_scale_min "0.5"
  126. bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  127. //cl_color 0 (yellow)
  128. cl_color 1 (purple)
  129. //cl_color 2 (green)
  130. //cl_color 3 (blue)
  131. //cl_color 4 (orange)
  132.  
  133.  
  134.  
  135. //Sound - less delayed, better sound
  136. windows_speaker_config "1"
  137. snd_mixahead "0.05"
  138. snd_musicvolume "0"
  139. snd_headphone_pan_exponent "2"
  140. snd_headphone_pan_radial_weight "1"
  141. snd_rear_headphone_position "90"
  142. bind "kp_minus" "toggle voice_scale 1 0" // this lets you turn voice on and off on numpad minus
  143. bind "kp_plus" "toggle volume 0.05 0.5"
  144.  
  145.  
  146.  
  147.  
  148. echo "Autoexec Config loaded" // make sure this autoexec does its fine
  149. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement