Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 KB | None | 0 0
  1. echo Config Loaded! (1/2)
  2. // When you type "//" the game ignores whatever is written after
  3. // Primary Commands
  4. con_enable "1" //Enables Console
  5.  
  6.  
  7. //Viewmodels
  8. viewmodel_presetpos 0 //Prevents viewmodels from resetting
  9. viewmodel_offset_x "2.5" //Changes viewmodel view in X scale
  10. viewmodel_offset_y "2" //Changes viewmodel view in Y scale
  11. viewmodel_offset_z "-2" //Changes viewmodel view in Z scale
  12. viewmodel_fov "68" //Highest viewmodel FOV
  13.  
  14.  
  15. // No Tutorial or Info Messages (FPS BOOST)
  16. gameinstructor_enable "0" //Removes in game lessons
  17. cl_showhelp "0" //Removes on-screen help
  18. cl_autohelp "0" //Removes automatic help
  19. cl_disablefreezecam "1" //Disables Freezecam, very important to have off
  20. //cl_disablehtmlmotd "1" //Removes "Message of the day" page when joining a server
  21.  
  22. // Rates (Settings are optimized for best networking experience)
  23. rate "128000" //Max bytes per second the host can receive data
  24. cl_cmdrate "128" //Max number of command packets sent to server per second
  25. cl_updaterate "128" //Number of packets per second you are requesting from the server
  26. cl_interp_ratio "1" //Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)
  27. cl_interp "0" //Sets the interpolation amount, always set this to 0
  28. cl_lagcompensation "1" //Lag compensation helps by eliminating combat latency from client side view
  29. cl_predict "1" //Skip waiting for server feedback and simulate client side movement in real-time
  30. cl_predictweapons "1" //Skip waiting for server feedback and perform client side prediction of weapon effects
  31.  
  32. // Video
  33. mat_monitorgamma "1.6" //Brightness, use this value for best brightness
  34. mat_monitorgamma_tv_enabled "0" //Turn off TV Mode
  35.  
  36. // Sound
  37. voice_scale "0.4" //Turns down the volume of other players voice to 40%
  38. snd_mixahead "0.05" //Makes sound as instant as it can get, making it easier to hear small things
  39. snd_musicvolume "0" //Turns off all music, easier to focus
  40.  
  41. // Net
  42. fps_max "300" //Setting this to 300 for the general gamers
  43. net_graph "1" //Shows my network usage data
  44. net_graphheight "0" //Changes height
  45. net_graphmsecs "400" //The latency graph represents this many milliseconds
  46. net_graphpos "2" //Positioning of Net Graph
  47. net_graphproportionalfont "0.5" //Makes font smaller
  48. net_graphshowinterp "1" //Shows interpolation value
  49. net_graphshowlatency "1" //Shows latency value
  50. net_graphsolid "1" //Solid Net Graph
  51. net_graphtext "1" //Shows text fields
  52. net_maxroutable "1200" //Requested max packet size before packets are 'split'
  53. net_scale "5" //Makes font smaller
  54.  
  55. //Bindings
  56. bind "kp_enter" "buy ak47; buy m4a1; buy vesthelm; buy smokegrenade; buy flashbang; buy flashbang; buy molotov; buy incgrenade; buy hegrenade"
  57. bind "kp_home" "buy ak47; buy m4a1"
  58. bind "kp_uparrow" "buy galil; buy famas"
  59. bind "kp_pgup" "buy fiveseven; buy tec9"
  60. bind "kp_downarrow" "buy p250"
  61. bind "kp_end" "buy deagle"
  62. bind "kp_leftarrow" "buy awp"
  63. bind "4" "use weapon_hegrenade; buy hegrenade"
  64. bind "kp_plus" "buy vesthelm"
  65. bind "kp_minus" "buy vest"
  66. bind "kp_multiply" "buy defuser"
  67. bind "MOUSE4" "use weapon_smokegrenade; buy smokegrenade"
  68. bind "MOUSE5" "use weapon_flashbang; buy flashbang"
  69. bind "MOUSE3" "use weapon_incgrenade; use weapon_molotov; buy incgrenade; buy molotov"
  70.  
  71. //Show netgraph when checking scoreboard
  72. net_graph "1"
  73. net_graphheight "9999"
  74. alias "+scorenet" "+showscores; net_graphheight 0"
  75. alias "-scorenet" "-showscores; net_graphheight 9999"
  76. bind "TAB" "+scorenet"
  77.  
  78. // Sound
  79. snd_musicvolume 0.5
  80. snd_deathcamera_volume 0
  81. snd_mapobjective_volume 0 // The bomb music played prior to the ten-second warning
  82. snd_menumusic_volume 0
  83. snd_roundend_volume 0
  84. snd_roundstart_volume 0
  85. snd_tensecondwarning_volume 1 // The ten-second warning
  86. snd_mute_losefocus 0 // This will allow game noise to play even though you've alt-tabbed out
  87.  
  88. //Show netgraph when checking scoreboard
  89. net_graph "1"
  90. net_graphheight "9999"
  91. alias "+scorenet" "+showscores; net_graphheight 0"
  92. alias "-scorenet" "-showscores; net_graphheight 9999"
  93. bind "TAB" "+scorenet"
  94.  
  95. bind capslock "toggle cl_crosshairsize 3 500"
  96.  
  97. //Clutch bind
  98. alias "clutch" "clutchon"
  99. alias "clutchon" "voice_enable 0; gameinstructor_enable 1; cl_clearhinthistory; r_cleardecals; playvol buttons\blip2 0.5; alias clutch clutchoff; say_team Voice Disabled, I can't hear anyone now."
  100. alias "clutchoff" "voice_enable 1; gameinstructor_enable 0; playvol buttons\blip1 0.5; alias clutch clutchon; say_team Voice Enabled, I can hear you now."
  101. bind n clutch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement