Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.70 KB | None | 0 0
  1. // Config
  2. // When you type "//" the game ignores whatever is written after
  3. con_enable "1" //Enables Console
  4.  
  5. clear
  6.  
  7. // Bindings - These bindings
  8. bind "g" "drop" //Binds g to drop
  9. unbind "space" //Unbinds space
  10. bind "uparrow" "say xD ;say .ready" //Ready up with arrow key
  11. bind "downarrow" "say Dx ;say .notready" //Not Ready up with arrow key
  12. bind "n" "say .noclip ;noclip" //noclip
  13. bind "mwheeldown" "+jump" //Binds mouse wheel down to jump
  14. bind "mwheelup" "+jump" //Binds mouse wheel up to jump
  15. bind "v" "+voicerecord" //You can communicate with the V key instead of K
  16. bind "leftarrow" "+left" //Turn left with arrow key
  17. bind "rightarrow" "+right" //Turn right with arrow key
  18. bind "i" "say yawn"
  19. bind "o" "say gang"
  20. bind "mouse5" "use weapon_smokegrenade" //Binds mouse5 to pull out a smoke grenade
  21. bind "mouse4" "use weapon_flashbang" //Binds mouse4 to pull out a flashbang
  22. bind "tab" "+showscores; r_cleardecals" //Binds tab to clear decals and show scoreboard
  23.  
  24. // Viewmodel
  25. viewmodel_offset_x "1"
  26. viewmodel_offset_y "1"
  27. viewmodel_offset_z "-1.5"
  28. viewmodel_fov "60"
  29. viewmodel_presetpos "1"
  30. cl_bob_lower_amt "21"
  31. cl_bobamt_lat "0"
  32. cl_bobamt_vert "0"
  33. cl_bobcycle "0.98"
  34. cl_viewmodel_shift_left_amt "1.5"
  35. cl_viewmodel_shift_right_amt "0.75"
  36.  
  37. // No Tutorial or Info Messages - Can give FPS BOOST and is also very annoying
  38. gameinstructor_enable "0" //Removes in game lessons
  39. cl_showhelp "0" //Removes on-screen help
  40. cl_autohelp "0" //Removes automatic help
  41. cl_disablefreezecam "1" //Disables Freezecam, very important to have off
  42. cl_disablehtmlmotd "0" //Removes "Message of the day" page when joining a server
  43.  
  44. // Rates - These network settings are optimized for high speed internet
  45. rate "786432" //Max rates. Only use if you can get 8 Megabits per second (Mbps) download speed or more.
  46.  
  47. cl_cmdrate "128" //Max number of command packets sent to server per second
  48. cl_updaterate "128" //Number of packets per second you are requesting from the server
  49. cl_interp_ratio "1" //Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)
  50. cl_interp "0" //Sets the interpolation amount, always set this to 0
  51. cl_lagcompensation "1" //Lag compensation helps by eliminating combat latency from client side view
  52. cl_predict "1" //Skip waiting for server feedback and simulate client side movement in real-time
  53. cl_predictweapons "1" //Skip waiting for server feedback and perform client side prediction of weapon effects
  54.  
  55. // Video - Brightness & Disabling TV Mode
  56. mat_monitorgamma "1.6" //Sets the Brightness to it's highest value, highly recommended
  57. mat_monitorgamma_tv_enabled "0" //Turn off TV Mode for less off-set light
  58.  
  59. // Sound - Sound settings, doesn't affect volume in-game, adjust that yourself.
  60. voice_scale "0.4" //Turns down the volume of other players voice to 40%
  61.  
  62. // Net - How much frames you have and solid graph
  63. fps_max "300" //Map loads fast and allows high frames
  64. net_graph "1" //Shows my network usage data
  65. net_graphheight "0" //Changes height
  66. net_graphmsecs "400" //The latency graph represents this many milliseconds
  67. net_graphpos "1" //Positioning of Net Graph
  68. net_graphproportionalfont "0" //Makes font smaller
  69. net_graphshowinterp "1" //Shows interpolation value
  70. net_graphshowlatency "1" //Shows latency value
  71. net_graphsolid "1" //Solid Net Graph
  72. net_graphtext "1" //Shows text fields
  73. net_maxroutable "1200" //Requested max packet size before packets are 'split'
  74. net_scale "5" //Makes font smaller
  75.  
  76. // Other
  77. r_drawtracers_firstperson "1" //Hides bullet tracers in first person view
  78. lobby_voice_chat_enabled "0" //Turns microphone off in lobby, really useful
  79. cl_use_opens_buy_menu "0" //Disables E from opening buy-menu, really useful
  80. cl_autowepswitch 0 //Don't auto-pick weapons
  81. func_break_max_pieces 0 //Less clutter from breaking vents (especially in Mirage)
  82.  
  83. // Make sure mouse is using "Raw Input" & "No Acceleration"
  84. sensitivity "2"
  85. m_rawinput "1" //Enable Raw Input for perfect precision (Raw input is unavailable on OSX)
  86. m_mouseaccel2 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  87. m_mouseaccel1 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  88. m_customaccel "0" //Custom mouse acceleration disabled
  89. m_mousespeed "0" //Windows mouse acceleration disabled, just for precaution
  90. zoom_sensitivity_ratio_mouse "1" //Fixes your zoom sensitivity to act as your actual sensitivity, default is 1.
  91.  
  92. // Hud - All my personal hud modifications (Made possible as of 1 May 2015)
  93. hud_showtargetid "0" //Enables display of target names, important
  94. cl_teammate_colors_show 1 //Show teammates as separate colors in the radar, 2 is for letters
  95. cl_hud_bomb_under_radar "1" //Draws bomb under radar, convenient
  96. cl_hud_color "0" //Makes the hud color yellow, for banana style
  97. cl_hud_radar_scale ".9" //Radar Size, not too big and not too small
  98. cl_radar_scale "0.45" //Radar Map Scale Size, 0.4 is perfect on all maps
  99. cl_radar_always_centered "1" //Centers map instead of player in radar, important
  100. cl_hud_playercount_showcount "1" //Shows player avatars instead of numbers left
  101. cl_hud_playercount_pos "1" //Puts player information in the bottom instead of top
  102. cl_hud_healthammo_style "1" //Simplified information on HP/AP and ammo
  103. cl_hud_background_alpha ".5" //Hidden but still visible black bars, easy on the eyes
  104. cl_loadout_colorweaponnames "1" //Weapon names are colored in loadout to match their rarity, cool feature
  105. cl_radar_icon_scale_min ".8" //Sets the minimum player icon scale, this value feels good
  106. cl_showloadout "1" //So it doesnt fade out the weapon slots, very annoying otherwise
  107. hud_scaling "0.95" //Scales hud elements to maximum value
  108. cl_teamid_overhead_always 1 //Always show team behind walls
  109.  
  110. // SCRIPTS BELOW
  111.  
  112. //Nade Bind and Crosshair
  113. alias xhair "exec nadexhair; bind z nhair"
  114. alias nhair "exec regexhair; bind z xhair"
  115. bind z "xhair"
  116.  
  117. //viewmodel bind
  118. bind "c" "toggle cl_righthand 1 0 1"
  119.  
  120. // Long Jump
  121. alias +CrookHasSwag "+duck; +jump; -forward; -back"
  122. alias -CrookHasSwag "-duck; -jump;"
  123. alias "lj" "clear; bind mouse2 "+CrookHasSwag"; echo "LJ bindings loaded""
  124. alias "nolj" "bind mouse2 "+attack2"; echo "LJ bindings disabled""
  125.  
  126. // Jump Throw (For Smokes)
  127. alias "+jumpthrow" "+jump;-attack"
  128. alias "-jumpthrow" "-jump"
  129. bind "x" "+jumpthrow"
  130.  
  131. //Volume
  132. bind "ins" "toggle volume 0 0.02 0.2
  133.  
  134. //Buy Binds
  135. bind "f1" "buy awp;"
  136. bind "f2" "buy ak47; buy m4a1;"
  137. bind "f5" "buy vest;"
  138. bind "f6" "buy vesthelm;"
  139. bind "f7" "buy defuser;"
  140. bind "f9" "buy smokegrenade;"
  141. bind "f10" "buy flashbang;"
  142. bind "f11" "buy hegrenade;"
  143. bind "f12" "buy molotov; buy incgrenade;"
  144.  
  145. //DROP BIND
  146. alias "dropbind" "buy ak47; buy m4a1; buy m4a1s; slot 1; drop"
  147. bind "f3" "dropbind"
  148.  
  149. //
  150.  
  151. clear
  152.  
  153. echo autoexec.cfg loaded.
  154.  
  155. //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement