UnderZeroPRO

UnderZero - autoexec

Jan 6th, 2018 (edited)
1,346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CFDG 10.83 KB | None | 0 0
  1. //cs:go options:
  2. // -novid -high +cl_forcepreload 1 -nod3d9ex -noaafonts  -language bananagaming -nojoy
  3. //Steam options:
  4. // "C:\Program Files (x86)\Steam\Steam.exe" -nofriendsui -silent //Make steam "old style"
  5. ////////////////////////////////////////////////////////////////////////////////////////////////////////
  6. clear
  7. con_enable "1" //Enables Console
  8.  
  9.  
  10. echo Config Loaded! (1/3) //This confirms that the config has been loaded
  11.  
  12.  
  13. // Viewmodels - Viewmodel Settings
  14. viewmodel_offset_x "1" //Changes viewmodel view in X scale
  15. viewmodel_offset_y "2" //Changes viewmodel view in Y scale
  16. viewmodel_offset_z "-2" //Changes viewmodel view in Z scale
  17. viewmodel_fov "68" //Highest viewmodel FOV
  18.  
  19. // Bob - How much you move around with weapons
  20. cl_bob_lower_amt "5" //How much the viewmodel lowers when running, set to lowest for less distraction
  21. cl_bobamt_lat "0.1" //How much the viewmodel moves side to side when running, set to lowest for less distraction
  22. cl_bobamt_vert "0.1" //How much the viewmodel moves up and down when running, set to lowest for less distraction
  23. cl_bobcycle "0.98" //The frequency at which the viewmodel bobs, set to default
  24. cl_viewmodel_shift_left_amt "0" //Removes shifting of arms
  25. cl_viewmodel_shift_right_amt "0" //Removes shifting of arms
  26.  
  27. // No Tutorial or Info Messages - Can give FPS BOOST and is also very annoying
  28. gameinstructor_enable "0" //Removes in game lessons
  29. cl_showhelp "0" //Removes on-screen help
  30. cl_autohelp "0" //Removes automatic help
  31. cl_disablefreezecam "1" //Disables Freezecam, very important to have off
  32. cl_disablehtmlmotd "1" //Removes "Message of the day" page when joining a server
  33.  
  34. // Rates - These network settings are optimized for high speed internet
  35. cl_cmdrate "128" //Max number of command packets sent to server per second
  36. cl_updaterate "128" //Number of packets per second you are requesting from the server
  37. cl_interp "0.007813" //Sets the interpolation amount, always set this to 0
  38. cl_interp_ratio "1" //Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)
  39. cl_lagcompensation "1" //Lag compensation helps by eliminating combat latency from client side view
  40. cl_predict "1" //Skip waiting for server feedback and simulate client side movement in real-time
  41. cl_predictweapons "1" //Skip waiting for server feedback and perform client side prediction of weapon effects
  42.  
  43. // Video - Brightness & Disabling TV Mode
  44. mat_monitorgamma "1.6" //Sets the Brightness to it's highest value, highly recommended
  45. mat_monitorgamma_tv_enabled "0" //Turn off TV Mode for less off-set light
  46.  
  47. // Sound - Sound settings, doesn't affect volume in-game, adjust that yourself.
  48. voice_scale "0.3" //Turns down the volume of other players voice to 40%
  49. snd_musicvolume "0" //Turns off all music, easier to focus
  50. snd_hwcompat 0 //Enables "Advanced 3D Audio Processing"
  51.  
  52. // Net - How much frames you have and solid graph
  53. fps_max "0" //Map loads fast and allows high frames
  54. fps_max_menu "0"
  55. net_graph "1" //Shows my network usage data
  56. net_graphheight "0" //Changes height
  57. net_graphmsecs "400" //The latency graph represents this many milliseconds
  58. net_graphpos "1" //Positioning of Net Graph
  59. net_graphproportionalfont "0" //Makes font smaller
  60. net_graphshowinterp "1" //Shows interpolation value
  61. net_graphshowlatency "1" //Shows latency value
  62. net_graphsolid "1" //Solid Net Graph
  63. net_graphtext "1" //Shows text fields
  64. net_maxroutable "1200" //Requested max packet size before packets are 'split'
  65. net_scale "5" //Makes font smaller
  66.  
  67.  
  68. // RADAR
  69.  
  70. cl_hud_radar_scale "1" //Radar size, not too big and not too small
  71. cl_radar_scale "0.4" //Radar map scale size, 0.4 works on all maps
  72. cl_radar_always_centered "0" //Centers map instead of player
  73. cl_radar_icon_scale_min "1" //Minimum player icon scale
  74.  
  75.  
  76. // Other
  77. r_drawtracers_firstperson "0" //Hides bullet tracers in first person view ////////// UnderZero
  78. lobby_voice_chat_enabled "0" //Turns microphone off in lobby, really useful
  79. mm_dedicated_search_maxping "50" //Maxping Search in Matchmaking
  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. m_rawinput "1" //Enable Raw Input for perfect precision (Raw input is unavailable on OSX)
  85. m_mouseaccel2 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  86. m_mouseaccel1 "0" //Disables windows mouse acceleration initial threshold, safety precaution
  87. m_customaccel "0" //Custom mouse acceleration disabled
  88. m_mousespeed "0" //Windows mouse acceleration disabled, just for precaution
  89. zoom_sensitivity_ratio_mouse "1" //Fixes your zoom sensitivity to act as your real sensitivity, default value is 1.
  90.  
  91. // I've changed these values since 2017-04-24 back to 1 instead of 0.85
  92. safezonex "1" //Default Value is 1.0
  93. safezoney "1" //Default Value is 1.0
  94.  
  95. echo Config Loaded! (2/2) //This just confirms that the config has ended successfully
  96. //
  97. //
  98. //
  99. //
  100. //
  101. // SCRIPTS BELOW - Not needed if you don't want them.
  102.  
  103. echo Scripts Loaded (2/3)
  104.  
  105. // Shortcut for disconnet
  106. alias "/q" "disconnect"
  107. alias "dc" "disconnect"
  108. // Shortcut
  109. bind "shift" "+speed; r_cleardecals"
  110.  
  111. // Netgraph + Scoreboard
  112. alias "+scorenet" "+showscores; net_graphheight 0"
  113. alias "-scorenet" "-showscores; net_graphheight 9999"
  114. bind "TAB" "+scorenet" //Bind to whatever you prefer (Default TAB)
  115.  
  116. // Display Advanced Damage Details
  117. alias displaydamage "displaydamage_on"
  118. alias displaydamage_on "con_filter_text Damage Given To; con_filter_text_out Player:; con_filter_enable 2; developer 1; playvol buttons\blip1 0.5; alias displaydamage "displaydamage_off""
  119. alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2 0.5; alias displaydamage "displaydamage_on""
  120. bind "F5" "displaydamage" //Bind to whatever you prefer (Default F5)
  121.  
  122.  
  123. // Toggle Info Target ID 2017-03-16
  124. alias "ToggleInfo" "info_on"
  125. alias "info_on" "+cl_show_team_equipment; alias ToggleInfo info_off"
  126. alias "info_off" "-cl_show_team_equipment; alias ToggleInfo info_on"
  127. info_on
  128.  
  129. bind "MWHEELUP" "+jump"
  130. bind "MWHEELDOWN" "+jump"
  131. bind "V" "callvote"
  132. bind "N" "getout"
  133.  
  134.  
  135. /////////////////////////////////////////////////////////////////////
  136. // Advanced Bind Script - Fast grenade switch by Maxim aka BananaGaming
  137.  
  138. //Part 1
  139. //Make sure that what is inside the quotes is what you're currently using. You may also change the letters/numbers.
  140.  
  141. alias defI "bind x radio2"
  142.  
  143.  
  144. //Part 2
  145. //If you changed any letters/numbers in part 1 make sure you make the same changes here.
  146.  
  147. alias keyI "bind x keyII"
  148.  
  149.  
  150. //Part 3
  151. //Here you can change what the bindings do when you hold down your key.
  152. //This is the fun part. :)
  153.  
  154. alias keyII "ToggleInfo"
  155.  
  156. /////////////////////////////////////////////////////////////////////
  157.  
  158. //Skazzy3's epic clutch bind - START
  159. //Remake by Maxim
  160.  
  161. //Don't touch this
  162. alias "clutch" "clutchon"
  163. alias "clutchon" "voice_enable 0; clutchsoundon; gameinstructor_enable 1; cl_clearhinthistory; r_cleardecals; playvol buttons\weapon_confirm 0.5; say_team Voice Disabled, I can't hear anyone now; alias clutch clutchoff"
  164. alias "clutchoff" "voice_enable 1; clutchsoundoff; gameinstructor_enable 0; playvol buttons\button2 0.5; say_team Voice Enabled, I can hear you now; alias clutch clutchon"
  165. clutchoff
  166.  
  167. //Bind this to a key (this will turn on & off the clutch)
  168. bind "alt" clutch
  169.  
  170. //Clutch audio options.
  171. //Feel free to edit these how you like.
  172. alias "clutchsoundon" "volume 0.7; snd_musicvolume 0.2; snd_menumusic_volume 0; snd_deathcamera_volume 0; snd_mapobjective_volume 0; snd_roundend_volume 0; snd_roundstart_volume 0; snd_tensecondwarning_volume 1"
  173. alias "clutchsoundoff" "volume 1; snd_musicvolume 0; snd_menumusic_volume 0; snd_deathcamera_volume 0; snd_mapobjective_volume 0; snd_roundend_volume 0; snd_roundstart_volume 0; snd_tensecondwarning_volume 0"
  174. //Skazzy3's epic clutch bind - END
  175.  
  176. //End of Script
  177.  
  178.  
  179. echo Scripts Loaded (3/3)
  180. cl_crosshair_drawoutline "1"
  181. cl_crosshair_dynamic_maxdist_splitratio "0.0"
  182. cl_crosshair_dynamic_splitalpha_innermod "1"
  183. cl_crosshair_dynamic_splitalpha_outermod "0.300000"
  184. cl_crosshair_dynamic_splitdist "5"
  185. cl_crosshair_outlinethickness "1"
  186. cl_crosshair_sniper_show_normal_inaccuracy "0"
  187. cl_crosshair_sniper_width "1"
  188. cl_crosshair_t "0"
  189. cl_crosshairalpha "235.000000"
  190. cl_crosshaircolor "1"
  191. cl_crosshaircolor_b "0"
  192. cl_crosshaircolor_g "255"
  193. cl_crosshaircolor_r "0"
  194. cl_crosshairdot "1"
  195. cl_crosshairgap "-4.000000"
  196. cl_crosshairgap_useweaponvalue "0"
  197. cl_crosshairscale "0"
  198. cl_crosshairsize "0.500000"
  199. cl_crosshairstyle "4"
  200. cl_crosshairthickness "1"
  201. cl_crosshairusealpha "1"
  202. cl_fixedcrosshairgap "-3.000000"
  203. cl_viewmodel_shift_left_amt "0.500000"
  204. cl_viewmodel_shift_right_amt "0.250000"
  205. viewmodel_fov "68"
  206. viewmodel_offset_x "1"
  207. viewmodel_offset_y "2"
  208. viewmodel_offset_z "-2"
  209. viewmodel_presetpos "0"
  210. viewmodel_recoil "0"
  211. cl_bob_lower_amt "5"
  212. cl_bobamt_lat "0.1"
  213. cl_bobamt_vert "0.1"
  214. cl_bobcycle "0.98"
  215. cl_hud_background_alpha "0.5"
  216. cl_hud_bomb_under_radar "1"
  217. cl_hud_color "5"
  218. cl_hud_healthammo_style "0"
  219. cl_hud_playercount_pos "0"
  220. cl_hud_playercount_showcount "0"
  221. cl_hud_radar_scale "1"
  222. hud_scaling "0.850000"
  223. hud_showtargetid "1"
  224. cl_loadout_colorweaponnames "0"
  225. cl_righthand "1"
  226. cl_color "4"
  227.  
  228. echo Crosshair & Hud Loaded
  229.  
  230. cl_crosshair_drawoutline "0"
  231. cl_crosshair_dynamic_maxdist_splitratio "0"
  232. cl_crosshair_dynamic_splitalpha_innermod "1.000000"
  233. cl_crosshair_dynamic_splitalpha_outermod "0.3"
  234. cl_crosshair_dynamic_splitdist "3"
  235. cl_crosshair_outlinethickness "1"
  236. cl_crosshair_sniper_show_normal_inaccuracy "0"
  237. cl_crosshair_sniper_width "1"
  238. cl_crosshair_t "0"
  239. cl_crosshairalpha "9999"
  240. cl_crosshaircolor "4"
  241. cl_crosshaircolor_b "200"
  242. cl_crosshaircolor_g "0"
  243. cl_crosshaircolor_r "152."
  244. cl_crosshairdot "0"
  245. cl_crosshairgap "-2"
  246. cl_crosshairgap_useweaponvalue "0"
  247. cl_crosshairscale "1000"
  248. cl_crosshairsize "3"
  249. cl_crosshairstyle "4"
  250. cl_crosshairthickness "1"
  251. cl_crosshairusealpha "1"
  252. cl_fixedcrosshairgap "-4"
  253. cl_viewmodel_shift_left_amt "0.500000"
  254. cl_viewmodel_shift_right_amt "0.250000"
  255. viewmodel_fov "68"
  256. viewmodel_offset_x "2.500000"
  257. viewmodel_offset_y "0"
  258. viewmodel_offset_z "-1.500000"
  259. viewmodel_presetpos "3"
  260. viewmodel_recoil "0"
  261.  
  262. ////////////////////////// 11. FPS & Video
  263.  
  264. //I no longer use fps_max. I'm using Rivatuner to limit my frames @ 240 for best frame to frame consistency.
  265.                                        
  266. mat_monitorgamma_tv_enabled "0"                                 //Turn off TV Mode for less off-set light
  267. mat_powersavingsmode "0"                                        //Disables power saving mode
  268. mat_queue_mode "-1"                                             //The queue/thread mode, setting this to -1 is default for your system
  269. r_dynamic "0"                                                   //Affects dynamic lighting, turned off for more FPS
  270.  
  271. echo FPS & Video Settings Loaded [X]                            //Loading confirmation in console
  272.  
  273. //Final part
  274. host_writeconfig //Store current settings to config.cfg
  275.  
  276. clear
  277. echo Crosshair & Hud Loaded ---- ScreaM-----
Add Comment
Please, Sign In to add comment