Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 6.08 KB | None | 0 0
  1. // create a new text file called autoexec.cfg
  2. // and place it in Steam\userdata\YOUR_STEAM_ID\730\local\cfg
  3. // then paste some or all of this stuff into it
  4. // everything beginning with slashes is a comment
  5. // generally this shit is legit helpful
  6. // but some stuff is just personal preference
  7.  
  8. // show team equipment through walls
  9. +cl_show_team_equipment
  10.  
  11. // net graph with tab
  12.  
  13. net_graph "1"
  14. net_graphheight "9999"
  15. net_graphproportionalfont "1"
  16. bind "TAB" "+scorenet"
  17. alias "+scorenet" "+showscores; net_graphheight 0"
  18. alias "-scorenet" "-showscores; net_graphheight 9999"
  19.  
  20. // choose colour in MM [0-yellow, 1-purple, 2-green, 3-blue, 4-orange]
  21. cl_color 3
  22.  
  23. // quick knife bind with toggle
  24. // press PgUp twice after joining server
  25. // then each subsequent press changes modes
  26. // you want this on for awp + scout + deagle
  27. // off for basically everything else
  28. // when it's on, pressing q will switch immediately
  29. // to your knife and back to your weapon
  30. // so you don't need to manually unscope
  31. // and you can move at full speed immediately
  32. // to get your knife out, hold q
  33.  
  34. alias "knifetoggle" "bind q +knife;bind pgup knifetoggleoff"
  35. alias "knifetoggleoff" "bind q lastinv;bind pgup knifetoggle"
  36. bind "pgup" knifetoggle
  37. alias +knife slot3
  38. alias -knife lastinv
  39. bind "q" +knife
  40.  
  41. // htrf sound settings
  42. // this makes the positional sound a little better
  43.  
  44. windows_speaker_config "1"
  45. snd_front_headphone_position "90.0"
  46. snd_rear_headphone_position "90.0"
  47. snd_headphone_pan_exponent "1.0"
  48. snd_headphone_pan_radial_weight "0.0"
  49. snd_use_hrtf "1"
  50.  
  51. // new sound stuff to reduce audio lag (8.7.17)
  52.  
  53. snd_mix_async 1
  54. snd_mixahead 0.02
  55.  
  56. // fancy colours for fancy skins
  57. // obviously required
  58.  
  59. cl_loadout_colorweaponnames 1
  60.  
  61. // sniper stuff
  62. // sets your scoped sens to equal your regular sens
  63. // makes the lines a little larger
  64. // this is very subjective, maybe don't use this
  65.  
  66. zoom_sensitivity_ratio_mouse "0.818933027098955175"
  67. cl_crosshair_sniper_width "2"
  68. m_customaccel 0
  69.  
  70. // friends can join you on community servers
  71.  
  72. cl_join_advertise "2"
  73.  
  74. // ensures muzzle flashes are visible (e.g. so you can see muzzle flash
  75. // without direct line of sight on the gun itself)
  76.  
  77. r_dynamic "1"
  78.  
  79. // bomb finder
  80. // hold e to have a tooltip locate the bomb
  81. // and automatically defuse when you're close
  82.  
  83. alias +findbomb "+use; gameinstructor_enable 1; r_cleardecals"
  84. alias -findbomb "-use; gameinstructor_enable 0"
  85. bind e +findbomb
  86.  
  87. // swap view model
  88. // left-handed yo!
  89.  
  90. cl_righthand 0
  91.  
  92. // crosshair
  93. // my personal crosshair, which is fine
  94.  
  95. cl_crosshair_drawoutline "0"
  96. cl_crosshair_outlinethickness "1"
  97. cl_crosshaircolor "1"
  98. cl_crosshairdot "0"
  99. cl_crosshairgap "-3"
  100. cl_crosshairgap_useweaponvalue "0"
  101. cl_crosshairsize "2"
  102. cl_crosshairstyle "4"
  103. cl_crosshairthickness "1"
  104. cl_crosshairusealpha "1"
  105. cl_crosshair_t "1"
  106.  
  107. // disables weapon switch on pickup
  108. // aka the one setting you really need to change on new accounts
  109.  
  110. cl_autowepswitch "0"
  111.  
  112. // disable engine sleep when you alt-tab
  113. // loads everything on a map at the beginning
  114. // enable multithreading
  115. // loads of good shit here
  116.  
  117. engine_no_focus_sleep "0"
  118. cl_forcepreload "1"
  119. mat_queue_mode "2"
  120.  
  121. // show team loadout
  122.  
  123. cl_showloadout "1"
  124.  
  125. // disable freezecam on death
  126.  
  127. cl_disablefreezecam "1"
  128.  
  129. // radar stuff
  130. // lets you use 0, - and = to adjust the size of the radar
  131.  
  132. bind "0" "cl_radar_scale 0.4"
  133. bind "-" "cl_radar_scale 0.6"
  134. bind "=" "cl_radar_scale 0.8"
  135.  
  136. cl_radar_icon_scale_min "0.7"
  137. cl_radar_scale "0.4"
  138. cl_radar_rotate "1"
  139. cl_radar_always_centered "0"
  140. cl_radar_square_with_scoreboard "1"
  141.  
  142. // repositions the gunmodel to mimic CSS more closely.
  143.  
  144. viewmodel_fov "65"
  145. viewmodel_offset_x "2"
  146. viewmodel_offset_y "2"
  147. viewmodel_offset_z "-2"
  148.  
  149. // removes the shifting of the arm when crouching down.
  150.  
  151. cl_viewmodel_shift_left_amt "0"
  152. cl_viewmodel_shift_right_amt "0"
  153.  
  154. // removes the bobbing of the weapon back and forth, when you run.
  155.  
  156. cl_bob_lower_amt "0"
  157. cl_bobamt_lat "0"
  158. cl_bobamt_vert "0"
  159.  
  160. // scales the HUD depending on what resolution you use, 1 is max.
  161.  
  162. hud_scaling ".95"
  163.  
  164. // usual rate commands
  165. // new as of 21.09.16
  166.  
  167. rate "786432"
  168. cl_cmdrate "128"
  169. cl_updaterate "128"
  170. cl_interp "0"
  171. cl_interp_ratio "1"
  172.  
  173. // causes the scope to move less while moving scoped and reduces bobbing effect
  174.  
  175. cl_bobcycle "0.98"
  176.  
  177. // practice script
  178.  
  179. alias practice "sv_cheats 1; sv_infinite_ammo 2; sv_grenade_trajectory 1; mp_buy_anywhere 1; mp_roundtime 60; mp_roundtime_defuse 60; mp_roundtime_hostage 60; bot_zombie 1; bot_freeze 1; bot_stop 1; mp_autoteambalance 0; impulse 101; mp_warmup_end; mp_buytime 900000; sv_regeneration_force_on 1; sv_showimpacts 1;ammo_grenade_limit_total 6; give weapon_flashbang; give weapon_decoy; give weapon_smokegrenade; give weapon_incgrenade; give weapon_hegrenade"
  180.  
  181. // redeye
  182.  
  183. bind "j" "say hehe lol :D :D"
  184.  
  185. // jump-throw script
  186.  
  187. alias "+jumpthrow" "+jump;-attack"
  188. alias "-jumpthrow" "-jump"
  189. bind "h" "+jumpthrow"
  190.  
  191. // numpad buyscript
  192. // customise these aliases
  193.  
  194. alias num0 "buy vesthelm"
  195. alias num1 "buy p250"
  196. alias num2 "buy tec9"       //buys a tec9 or five seven or cz75
  197. alias num3 "buy deagle"
  198. alias num4 "buy famas"      //buys a famas or galil
  199. alias num5 "buy ak47"       //buys an ak47 or an m4a1 or an m4a1_silencer
  200. alias num6 "buy aug"        //buys an aug or an sg552
  201. alias num7 "buy nova"
  202. alias num8 "buy mag7"           //buys a mag7 or a sawedoff
  203. alias num9 "buy ssg08"     
  204. alias num/ "buy hegrenade"
  205. alias num- "buy smokegrenade"
  206. alias num+ "buy molotov"
  207. alias numenter "buy awp"
  208. alias num. "buy vest"
  209. alias num* "buy flashbang"
  210.  
  211. // leave these binds alone
  212.  
  213. bind kp_ins num0;bind kp_end num1;bind kp_downarrow num2;bind kp_pgdn num3;bind kp_leftarrow num4;bind kp_5 num5;bind kp_rightarrow num6;bind kp_home num7;bind kp_uparrow num8;bind kp_pgup num9;bind kp_slash num/;bind kp_minus num-;bind kp_plus num+;bind kp_enter numenter;bind kp_del num.;bind kp_multiply num*;
  214.  
  215. // display damage in upper left
  216.  
  217. developer "1"
  218. con_enable "1"
  219. con_filter_enable "2"
  220. con_filter_text "Damage"
  221. con_filter_text_out Player:
  222.  
  223. // make it so number one
  224.  
  225. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement