Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. // Viewmodel(Counter Stike Source Style for couch mode) and Movement Shifting
  2.  
  3.  
  4. //Gun Tracers - these are bad, really misleading
  5. r_drawtracers_firstperson "0"
  6.  
  7.  
  8. //Sound - less delayed, better sound
  9. windows_speaker_config "1"
  10. snd_mixahead "0.05"
  11. snd_musicvolume "0"
  12. snd_headphone_pan_exponent "2"
  13. snd_headphone_pan_radial_weight "1"
  14. snd_rear_headphone_position "90"
  15. bind "kp_minus" "toggle voice_enable 1 0" // this lets you turn voice on and off on numpad minus
  16.  
  17.  
  18. // Rates and Interpolation
  19. rate "128000"
  20. cl_cmdrate "128"
  21. cl_updaterate "128"
  22. cl_interp_ratio "1"
  23. cl_interp "0"
  24. cl_lagcompensation "1"
  25. cl_pred_optimize "2"
  26. cl_predict "1"
  27. cl_predictweapons "1"
  28. cl_smooth "0"
  29. cl_smoothtime "0"
  30. cl_wpn_sway_interp "0"
  31. cl_disablehtmlmotd "0"
  32.  
  33. echo "Rate Settings loaded"
  34.  
  35. //MOTD - because fuck opinion
  36. cl_disablehtmlmotd "1"
  37. cl_downloadfilter "nosounds"
  38.  
  39.  
  40. // Mouse commands
  41. m_rawinput "0"
  42. m_mouseaccel1 "0"
  43. m_mouseaccel2 "0"
  44.  
  45. //Radar - radar settings + adjustment on numpad enter
  46. cl_radar_scale "0.4"
  47. cl_radar_rotate "1"
  48. cl_radar_always_centered "1"
  49. cl_radar_scale "0.5"
  50. cl_radar_icon_scale_min ".5"
  51. bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  52.  
  53. // Miscellaneous
  54. cl_autowepswitch "0"
  55. cl_autohelp "0"
  56. cl_showhelp "0"
  57. cl_righthand "1"
  58. cl_forcepreload "1"
  59. hud_showtargetid "0"
  60. fps_max "999"
  61. net_allow_multicast "1"
  62. net_graphheight "100"
  63. net_graphmsecs "400"
  64. net_graphpos "1"
  65. net_graphproportionalfont "0"
  66. net_graphshowinterp "1"
  67. net_graphshowlatency "1"
  68. net_graphsolid "1"
  69. net_graphtext "1"
  70. net_maxroutable "1200"
  71. net_scale "5"
  72. net_steamcnx_allowrelay "1"
  73. mm_dedicated_search_maxping "90"
  74. mm_session_search_ping_limit "50"
  75.  
  76. //Deathcam - optional again
  77. cl_disablefreezecam "1"
  78.  
  79.  
  80.  
  81.  
  82. echo "Net Settings loaded"
  83.  
  84. echo "Autoexec Config loaded" // make sure this autoexec does its fine
  85. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement