Advertisement
Guest User

David cfg

a guest
Jul 31st, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. echo Config Loaded! (1/2) //This just confirms that the config has been loaded
  2.  
  3. bind F8 "exec david.cfg"
  4.  
  5. // Crosshair
  6. cl_crosshair_drawoutline "0"
  7. cl_crosshair_dynamic_maxdist_splitratio "0.35"
  8. cl_crosshair_dynamic_splitalpha_innermod "1"
  9. cl_crosshair_dynamic_splitalpha_outermod "0.5"
  10. cl_crosshair_dynamic_splitdist "7"
  11. cl_crosshair_outlinethickness "1"
  12. cl_crosshair_sniper_width "1"
  13. cl_crosshairalpha "200"
  14. cl_crosshaircolor "1"
  15. cl_crosshaircolor_b "0"
  16. cl_crosshaircolor_g "127"
  17. cl_crosshaircolor_r "255"
  18. cl_crosshairdot "0"
  19. cl_crosshairgap "0"
  20. cl_crosshairgap_useweaponvalue "0"
  21. cl_crosshairscale "0"
  22. cl_crosshairsize "2"
  23. cl_crosshairstyle "1"
  24. cl_crosshairthickness "1"
  25. cl_crosshairusealpha "1"
  26. cl_fixedcrosshairgap "-10"
  27.  
  28.  
  29. // Viewmodel
  30.  
  31.  
  32. // Colored Weaponnames
  33. cl_loadout_colorweaponnames "1"
  34.  
  35. rate "128000"
  36. hud_scaling "1"
  37. cl_interp "0"
  38. cl_interp_ratio "1"
  39. cl_cmdrate "128"
  40. cl_updaterate "128"
  41. fps_max "999"
  42.  
  43.  
  44. // Colored Weaponnames
  45. cl_loadout_colorweaponnames 1
  46.  
  47. // Bindings
  48. bind "v" "+voicerecord" //You can communicate with the V key instead of K
  49. bind "f" "+lookatweapon" //Inspect your weapon with F
  50. unbind "i" //So you don't accidentally enable hud fade, which is very annoying
  51.  
  52. // No Tutorial or Info Messages (FPS BOOST)
  53. gameinstructor_enable "0" //Removes in game lessons
  54. cl_showhelp "0" //Removes on-screen help
  55. cl_autohelp "0" //Removes automatic help
  56. cl_disablefreezecam "1" //Disables Freezecam, very important to have off
  57. cl_disablehtmlmotd "1" //Removes "Message of the day" page when joining a server
  58.  
  59. // Rates (Settings are optimized for best networking experience)
  60. rate "128000" //Max bytes per second the host can receive data
  61. cl_cmdrate "128" //Max number of command packets sent to server per second
  62. cl_updaterate "128" //Number of packets per second you are requesting from the server
  63. cl_interp_ratio "1" //Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)
  64. cl_interp "0" //Sets the interpolation amount, always set this to 0
  65. cl_lagcompensation "1" //Lag compensation helps by eliminating combat latency from client side view
  66. cl_predict "1" //Skip waiting for server feedback and simulate client side movement in real-time
  67. cl_predictweapons "1" //Skip waiting for server feedback and perform client side prediction of weapon effects
  68.  
  69.  
  70.  
  71. // Sound
  72. voice_scale "0.4" //Turns down the volume of other players voice to 40%
  73. snd_mixahead "0.05" //Makes sound as instant as it can get, making it easier to hear small things
  74. snd_musicvolume "0" //Turns off all music, easier to focus
  75. voice_mixer_volume "0.955"
  76. // Net
  77.  
  78. net_graph "1" //Shows my network usage data
  79. net_graphheight "0" //Changes height
  80. net_graphmsecs "400" //The latency graph represents this many milliseconds
  81. net_graphpos "2" //Positioning of Net Graph
  82. net_graphproportionalfont "0" //Makes font smaller
  83. net_graphshowinterp "1" //Shows interpolation value
  84. net_graphshowlatency "1" //Shows latency value
  85. net_graphsolid "1" //Solid Net Graph
  86. net_graphtext "1" //Shows text fields
  87. net_maxroutable "1200" //Requested max packet size before packets are 'split'
  88. net_scale "5" //Makes font smaller
  89.  
  90. // Other
  91. r_drawtracers_firstperson "0" //Hides bullet tracers in first person view
  92. lobby_voice_chat_enabled "0" //Turns microphone off in lobby, really useful
  93. cl_use_opens_buy_menu "0" //Disables E from opening buy-menu, really useful
  94. mm_dedicated_search_maxping "50" //Maxping Search in Matchmaking
  95.  
  96. // Mouse
  97. m_rawinput "1" //Enable Raw Input for perfect precision (Raw input is unavailable on OSX)
  98. m_mouseaccel2 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  99. m_mouseaccel1 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  100. m_customaccel "0" //Custom mouse acceleration disabled
  101.  
  102. // Hud Modification (Made possible from Patch 1 May 2015, YAY!)
  103. hud_showtargetid "1" //Enables display of target names, important
  104. cl_hud_bomb_under_radar "1" //Draws bomb under radar, convenient
  105. cl_hud_radar_scale "0.9" //Radar Size, not too big and not too small
  106. cl_radar_scale "0.3" //Radar Map Scale Size, 0.3 is perfect on all maps
  107.  
  108. echo Config Loaded! (2/2) //This just confirms that the config has ended successfully
  109.  
  110. // It's time to rek some watermelons
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement