Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | None | 0 0
  1. echo Config Loaded!
  2. // 1. Main Settings
  3. con_enable "1" //Enables Console
  4. gameinstructor_enable "0" //Removes in-game instructions
  5. cl_showhelp "0" //Removes on-screen help
  6. cl_autohelp "0" //Removes automatic help
  7. cl_disablefreezecam "1" //Disables Freezecam
  8. cl_disablehtmlmotd "0" //Removes "Message of the day" page when joining a server
  9.  
  10. // 2. Bindings
  11. bind "j" "say_team drop pls"
  12. bind "v" "+voicerecord" //You can communicate with the V key instead of K
  13. bind "f1" "autobuy" //Autobuy weapons if you have lots of money with F1
  14. bind "f3" "buy flashbang; buy smokegrenade; buy molotov; buy hegrenade" //Autobuy grenades
  15. bind "f4" "ignoremsg" //Ignore chat by turning off enemies, teams and both
  16. bind "t" "+lookatweapon" //Inspect your weapon with F
  17. unbind "i" //So you don't accidentally enable hud fade, which is very annoying
  18. alias "dc" "disconnect"
  19.  
  20. // 4. Hud (Personal preference)
  21. hud_scaling "0.95" //Scales hud elements to maximum value
  22. hud_showtargetid "1" //Enables display of target names, important
  23. cl_hud_bomb_under_radar "1" //Draws bomb under radar, convenient
  24. cl_hud_playercount_showcount "1" //Shows player avatars instead of numbers left
  25. cl_hud_playercount_pos "1" //Puts player information in the bottom instead of top
  26. cl_hud_healthammo_style "1" //Simplified information on HP/AP and ammo
  27. cl_hud_background_alpha "0.4" //Hidden but still visible black bars, easy on the eyes
  28. cl_loadout_colorweaponnames "1" //Weapon names are colored in loadout to match their rarity, cool feature
  29. cl_showloadout "1" //So it doesnt fade out the weapon slots, very annoying otherwise
  30. cl_teamid_overhead_always 1 //Always show team behind walls
  31.  
  32. // 5. Radar (Optimized radar settings)
  33. cl_teammate_colors_show "2" //Show letters in radar
  34. cl_hud_radar_scale "1" //Radar size, not too big and not too small
  35. cl_radar_scale "0.4" //Radar map scale size, 0.4 works on all maps
  36. cl_radar_always_centered "0" //Centers map instead of player
  37. cl_radar_icon_scale_min "1" //Minimum player icon scale
  38.  
  39. // 6. Mouse (Makes sure mouse is using "Raw Input" & "No Acceleration")
  40. m_rawinput "1" //Enable Raw Input for perfect precision (Raw input is unavailable on OSX)
  41. m_mouseaccel2 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  42. m_mouseaccel1 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  43. m_customaccel "0" //Custom mouse acceleration disabled
  44. m_mousespeed "0" //Windows mouse acceleration disabled, just for precaution
  45.  
  46. // 9. Rates (These network settings are optimized for high speed internet)
  47. rate "786432" // Your download rate to the server. Max rate: "786432".
  48. cl_cmdrate "128" //Max number of command packets sent to server per second
  49. cl_updaterate "128" //Number of packets per second you are requesting from the server
  50. cl_interp "0" //Sets the interpolation amount, always set this to 0
  51. cl_interp_ratio "1" //Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)
  52.  
  53.  
  54. // 10. Net (Max frames per second and netgraph positioning)
  55. fps_max "350" //Map loads fast and allows high frames
  56. net_graph "1" //Shows my network usage data
  57. net_graphheight "0" //Changes height
  58. net_graphmsecs "400" //The latency graph represents this many milliseconds
  59. net_graphpos "2" //Positioning of Net Graph
  60. net_graphproportionalfont "0" //Makes font smaller
  61. net_graphshowinterp "1" //Shows interpolation value
  62. net_graphshowlatency "1" //Shows latency value
  63. net_graphsolid "1" //Solid Net Graph
  64. net_graphtext "1" //Shows text fields
  65. net_maxroutable "1200" //Requested max packet size before packets are 'split'
  66. net_scale "5" //Makes font smaller
  67.  
  68. // Jump Throw (For Smokes)
  69. alias "+jumpthrow" "+jump;-attack"
  70. alias "-jumpthrow" "-jump"
  71. bind "mouse4" +jumpthrow"
  72.  
  73. // 11. Video (Full Brightness & TV Mode disabled)
  74. mat_monitorgamma "1.6" //Sets the Brightness to it's highest value, highly recommended
  75. mat_monitorgamma_tv_enabled "0" //Turn off TV Mode for less off-set light
  76.  
  77. // 12. Sound (Optimized sound settings, doesn't affect volume, adjust that yourself with "volume").
  78. voice_scale "0.4" //Turns down the volume of other players voice to 40%
  79. snd_musicvolume "0" //Turns off all music, easier to focus
  80.  
  81. // 13. Other
  82. lobby_voice_chat_enabled "0" //Turns microphone off in lobby, really useful
  83. cl_use_opens_buy_menu "0" //Disables E from opening buy-menu, really useful
  84. mm_dedicated_search_maxping "50" //Maxping Search in Matchmaking
  85. cl_autowepswitch 0 //Don't auto-pick weapons
  86. func_break_max_pieces 0 //Less clutter from breaking vents (especially on Mirage)
  87. r_dynamic 0
  88. echo Config Loaded!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement