Guest User

Untitled

a guest
Aug 18th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.85 KB | None | 0 0
  1. //LAUNCHOPTIONS
  2. //-freq 144 -console -novid -tickrate 128 +exec autoexec.cfg +exec slam
  3.  
  4. // 1. Main Settings
  5.  
  6. //////////////////
  7. unbindall
  8. //////////////////
  9.  
  10. bind "`" "toggleconsole"
  11.  
  12. con_enable "1" //Enables Console
  13. gameinstructor_enable "0" //Removes in-game instructions
  14. cl_showhelp "0" //Removes on-screen help
  15. cl_autohelp "0" //Removes automatic help
  16. cl_disablefreezecam "1" //Disables Freezecam
  17. cl_disablehtmlmotd "0" //Removes "Message of the day" page when joining a server
  18.  
  19. //Rates (These network settings are optimized for high speed internet)
  20. rate "786432" // Your download rate to the server. Max rate: "786432".
  21. cl_cmdrate "128" //Max number of command packets sent to server per second
  22. cl_updaterate "128" //Number of packets per second you are requesting from the server
  23. cl_interp "0.007813" //Sets the interpolation amount, always set this to 0
  24. cl_interp_ratio "1" //Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)
  25. cl_lagcompensation "1" //Lag compensation helps by eliminating combat latency from client side view
  26. cl_predict "1" //Skip waiting for server feedback and simulate client side movement in real-time
  27. cl_predictweapons "1" //Skip waiting for server feedback and perform client side prediction of weapon effects
  28.  
  29. //VOLUME
  30. volume 0.5
  31. voice_enable 1
  32. voice_scale 0.3
  33. windows_speaker_config 1
  34. snd_musicvolume 0.3
  35. snd_tensecondwarning_volume 1
  36. snd_menumusic_volume 0
  37. snd_roundend_volume 0
  38. snd_roundstart_volume 0
  39. snd_deathcamera_volume 0
  40. snd_mapobjective_volume 0
  41.  
  42. //CROSSHAIR
  43. cl_crosshairstyle 4
  44. cl_crosshairsize 1.5
  45. cl_crosshairthickness 1.5
  46. cl_crosshairgap -0.5
  47. cl_crosshair_drawoutline 1
  48. cl_crosshair_outlinethickness 1
  49. cl_crosshairdot 0
  50. cl_crosshair_t 0
  51. cl_crosshaircolor 5
  52. cl_crosshaircolor_r 255
  53. cl_crosshaircolor_g 255
  54. cl_crosshaircolor_b 255
  55. cl_crosshairalpha 255
  56.  
  57. //TRACERS
  58. r_drawtracers_firstperson 1
  59.  
  60. //misc (cl)
  61. cl_loadout_colorweaponnames "1"
  62. +cl_show_team_equipment
  63. bind l "toggle cl_righthand 0 1"
  64. developer 1
  65. con_filter_enable 2
  66. con_filter_text_out "Player:"
  67. con_filter_text "damage Given"
  68.  
  69.  
  70. //JUMPTHROW BIND
  71. alias "+jumpthrow" "+jump;-attack"
  72. alias "-jumpthrow" "-jump"
  73. bind "mouse3" "+jumpthrow"
  74.  
  75.  
  76. //MOUSESETTINGS
  77. // DPI = 500
  78. sensitivity 2.0
  79. zoom_sensitivity 1
  80. zoom_sensitivity_ratio_mouse "1"
  81. m_rawinput "1"
  82. m_customaccel "0"
  83.  
  84. /// 10. Net (Max frames per second and netgraph positioning)
  85. net_graph "1" //Shows my network usage data
  86. net_graphheight "0" //Changes height
  87. net_graphmsecs "400" //The latency graph represents this many milliseconds
  88. net_graphpos "2" //Positioning of Net Graph
  89. net_graphproportionalfont "0" //Makes font smaller
  90. net_graphshowinterp "1" //Shows interpolation value
  91. net_graphshowlatency "1" //Shows latency value
  92. net_graphsolid "1" //Solid Net Graph
  93. net_graphtext "1" //Shows text fields
  94. net_maxroutable "1200" //Requested max packet size before packets are 'split'
  95. net_scale "5" //Makes font smaller
  96.  
  97. //HUD
  98. hud_scaling "0.95" //Scales hud elements to maximum value
  99. hud_showtargetid "1" //Enables display of target names, important
  100. cl_hud_bomb_under_radar "1" //Draws bomb under radar, convenient
  101. cl_hud_color "7" //Makes the hud color yellow, for banana style
  102. cl_hud_playercount_showcount "0" //Shows player avatars instead of numbers left
  103. cl_hud_playercount_pos "1" //Puts player information in the bottom instead of top
  104. cl_hud_healthammo_style "1" //Simplified information on HP/AP and ammo
  105. cl_hud_background_alpha "0.4" //Hidden but still visible black bars, easy on the eyes
  106. cl_loadout_colorweaponnames "1" //Weapon names are colored in loadout to match their rarity, cool feature
  107. cl_showloadout "1" //So it doesnt fade out the weapon slots, very annoying otherwise
  108. cl_teamid_overhead_always "1" //Always show team behind walls
  109. safezonex "1" //lowest 0.85
  110. safezoney "1" //lowest 0.85
  111.  
  112.  
  113. // Shortcuts
  114. alias "dc" "disconnect"
  115. alias "aim" "map aim_botz"
  116. alias "high" "volume 0.5"
  117. alias "low" "volume 0.02"
  118.  
  119.  
  120. // Netgraph inside Scoreboard
  121. alias "+scorenet" "+showscores; net_graphheight 0"
  122. alias "-scorenet" "-showscores; net_graphheight 9999"
  123. bind "TAB" "+scorenet" //Bind to whatever you prefer (Default TAB)
  124.  
  125.  
  126. // Display Advanced Damage Details
  127. alias displaydamage "displaydamage_on"
  128. 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""
  129. alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2 0.5; alias displaydamage "displaydamage_on""
  130. bind "F5" "displaydamage" //Bind to whatever you prefer (Default F5)
  131.  
  132.  
  133. //BUY BINDS
  134. bind "kp_end" "buy deagle;"
  135. bind "kp_ins" "buy ak47; buy m4a1; buy vest; buy vesthelm;"
  136. bind "kp_del" "buy vest; buy vesthelm;"
  137. bind "kp_enter" "buy awp;"
  138. bind "kp_plus" "buy ssg08; buy vest; buy vesthelm;"
  139. bind "kp_pgdn" "buy smokegrenade; buy hegrenade; buy flashbang; buy molotov; buy incgrenade; buy flashbang;"
  140. bind "rightarrow" "buy p250;"
  141. bind "leftarrow" "buy tec9; buy fiveseven;"
  142. bind "uparrow" "buy defuser;"
  143. bind "downarrow" "buy taser 34;"
  144. bind "kp_slash" "buy smokegrenade;"
  145. bind "kp_multiply" "buy hegrenade;"
  146. bind "kp_minus" "buy flashbang;"
  147. bind "kp_home" "buy ump45; buy vesthelm; buy vest;"
  148. bind "kp_uparrow" "buy mp7; buy vesthelm; buy vest;"
  149. bind "kp_pgup" "buy mac10; buy mp9; buy vesthelm;"
  150. bind "kp_5" "buy decoy;"
  151. bind "kp_rightarrow" "buy molotov; buy incgrenade;"
  152.  
  153. //misc perma
  154. viewmodel_recoil "0"
  155.  
  156.  
  157. //MISC to improve fps/fix issues
  158. //cl_forcepreload 1
  159. //mat_queue_mode 2
  160.  
  161.  
  162. cl_teammate_colors_show 1
  163.  
  164. bind del kill
  165.  
  166. fps_max "600" //Setting this to 0 will uncap it but will load maps 90 seconds slower. 600 gave me the best results.
  167. fps_max_menu "160" //Frame limiting my menu to 300 because I can
  168.  
  169.  
  170.  
  171. //////////////////////////////////////////////////////////////////////////////////
  172. bind "1" "slot10"
  173. bind "4" "slot4"
  174. bind "5" "slot9"
  175. bind "a" "+moveleft"
  176. bind "b" "buymenu"
  177. bind "c" "slot2"
  178. bind "d" "+moveright"
  179. bind "e" "+use"
  180. bind "f" "+lookatweapon"
  181. bind "g" "drop"
  182. bind "i" "show_loadout_toggle"
  183. bind "l" "toggle cl_righthand 0 1"
  184. bind "m" "teammenu"
  185. bind "q" "slot3"
  186. bind "r" "+reload"
  187. bind "s" "+back"
  188. bind "t" "+spray_menu"
  189. bind "u" "messagemode2"
  190. bind "v" "slot8"
  191. bind "w" "+forward"
  192. bind "x" "slot6"
  193. bind "y" "messagemode"
  194. bind "z" "radio1"
  195. bind "KP_INS" "buy ak47; buy m4a1; buy vest; buy vesthelm;"
  196. bind "KP_END" "buy deagle;"
  197. bind "KP_DOWNARROW" "buy negev; buy vest; buy vesthelm;"
  198. bind "KP_PGDN" "buy smokegrenade; buy hegrenade; buy flashbang; buy molotov; buy incgrenade; buy flashbang;"
  199. bind "KP_LEFTARROW" "buy nova; buy vest; buy vesthelm;"
  200. bind "KP_5" "buy decoy;"
  201. bind "KP_RIGHTARROW" "buy molotov; buy incgrenade;"
  202. bind "KP_HOME" "buy ump45; buy vesthelm; buy vest;"
  203. bind "KP_UPARROW" "buy mp7; buy vesthelm; buy vest;"
  204. bind "KP_PGUP" "buy mac10; buy mp9; buy vesthelm;"
  205. bind "KP_SLASH" "buy smokegrenade;"
  206. bind "KP_MULTIPLY" "buy hegrenade;"
  207. bind "KP_MINUS" "buy flashbang;"
  208. bind "KP_PLUS" "buy ssg08; buy vest; buy vesthelm;"
  209. bind "KP_ENTER" "buy awp;"
  210. bind "KP_DEL" "buy vest; buy vesthelm;"
  211. bind "`" "toggleconsole"
  212. bind "," "buyammo1"
  213. bind "." "buyammo2"
  214. bind "SPACE" "+duck"
  215. bind "TAB" "+scorenet"
  216. bind "CAPSLOCK" "slot7"
  217. bind "ESCAPE" "cancelselect"
  218. bind "DEL" "mute"
  219. bind "PAUSE" "pause"
  220. bind "SHIFT" "+speed"
  221. bind "CTRL" "slot5"
  222. bind "UPARROW" "buy defuser;"
  223. bind "LEFTARROW" "buy tec9; buy fiveseven;"
  224. bind "DOWNARROW" "buy taser 34;"
  225. bind "RIGHTARROW" "buy p250;"
  226. bind "F3" "autobuy"
  227. bind "F4" "rebuy"
  228. bind "F5" "displaydamage"
  229. bind "F6" "save quick"
  230. bind "F7" "load quick"
  231. bind "F10" "quit prompt"
  232. bind "MOUSE1" "+attack"
  233. bind "MOUSE2" "+attack2"
  234. bind "MOUSE3" "+jumpthrow"
  235. bind "MOUSE4" "slot1"
  236. bind "MOUSE5" "+voicerecord"
  237. bind "MWHEELUP" "+jump"
  238. bind "MWHEELDOWN" "invnext"
  239. bind "A_BUTTON" "+jump"
  240. bind "B_BUTTON" "+reload"
  241. bind "X_BUTTON" "+use"
  242. bind "Y_BUTTON" "invnextnongrenade"
  243. bind "L_SHOULDER" "invnextitem"
  244. bind "R_SHOULDER" "+lookspin"
  245. bind "BACK" "togglescores"
  246. bind "START" "gameui_activate"
  247. bind "STICK2" "+attack2"
  248. bind "DOWN" "drop"
  249. bind "S1_UP" "xmove"
  250. bind "L_TRIGGER" "+duck"
  251. bind "R_TRIGGER" "+attack"
  252. bind "S2_UP" "xlook"
  253. @panorama_debug_overlay_opacity "0.8"
  254. adsp_debug "0"
  255. ai_report_task_timings_on_limit "0"
  256. ai_think_limit_label "0"
  257. budget_averages_window "30"
  258. budget_background_alpha "128"
  259. budget_bargraph_background_alpha "128"
  260. budget_bargraph_range_ms "16.6666666667"
  261. budget_history_numsamplesvisible "100"
  262. budget_history_range_ms "66.666666667"
  263. budget_panel_bottom_of_history_fraction ".25"
  264. budget_panel_height "384"
  265. budget_panel_width "512"
  266. budget_panel_x "0"
  267. budget_panel_y "50"
  268. budget_peaks_window "30"
  269. budget_show_averages "0"
  270. budget_show_history "1"
  271. budget_show_peaks "1"
  272. bugreporter_uploadasync "0"
  273. bugreporter_username ""
  274. c_maxdistance "200"
  275. c_maxpitch "90"
  276. c_maxyaw "135"
  277. c_mindistance "30"
  278. c_minpitch "0"
  279. c_minyaw "-135"
  280. c_orthoheight "100"
  281. c_orthowidth "100"
  282. c_thirdpersonshoulder "false"
  283. c_thirdpersonshoulderaimdist "120.0"
  284. c_thirdpersonshoulderdist "40.0"
  285. c_thirdpersonshoulderheight "5.0"
  286. c_thirdpersonshoulderoffset "20.0"
  287. cachedvalue_count_partybrowser "1534059028"
  288. cachedvalue_count_teammates "1534573583"
  289. cam_collision "1"
  290. cam_idealdelta "4.0"
  291. cam_idealdist "150"
  292. cam_idealdistright "0"
  293. cam_idealdistup "0"
  294. cam_ideallag "4.0"
  295. cam_idealpitch "0"
  296. cam_idealyaw "0"
  297. cam_snapto "0"
  298. cc_lang ""
  299. cc_linger_time "1.0"
  300. cc_predisplay_time "0.25"
  301. cc_subtitles "0"
  302. chet_debug_idle "0"
  303. cl_allowdownload "1"
  304. cl_allowupload "1"
  305. cl_autohelp "0"
  306. cl_autowepswitch "0"
  307. cl_bob_lower_amt "5.000000"
  308. cl_bobamt_lat "0.100000"
  309. cl_bobamt_vert "0.100000"
  310. cl_bobcycle "0.980000"
  311. cl_chatfilter_version "1"
  312. cl_chatfilters "63"
  313. cl_clanid "28335998"
  314. cl_clock_24hour "1"
  315. cl_cmdrate "128"
  316. cl_color "2"
  317. cl_crosshair_drawoutline "0"
  318. cl_crosshair_dynamic_maxdist_splitratio "0.0"
  319. cl_crosshair_dynamic_splitalpha_innermod "1"
  320. cl_crosshair_dynamic_splitalpha_outermod "0.300000"
  321. cl_crosshair_dynamic_splitdist "5"
  322. cl_crosshair_outlinethickness "1"
  323. cl_crosshair_sniper_show_normal_inaccuracy "0"
  324. cl_crosshair_sniper_width "1"
  325. cl_crosshair_t "0"
  326. cl_crosshairalpha "255"
  327. cl_crosshaircolor "5"
  328. cl_crosshaircolor_b "0"
  329. cl_crosshaircolor_g "255"
  330. cl_crosshaircolor_r "0"
  331. cl_crosshairdot "0"
  332. cl_crosshairgap "-6.5"
  333. cl_crosshairgap_useweaponvalue "0"
  334. cl_crosshairscale "120"
  335. cl_crosshairsize "1"
  336. cl_crosshairstyle "4"
  337. cl_crosshairthickness "1.5"
  338. cl_crosshairusealpha "1"
  339. cl_debugrumble "0"
  340. cl_detail_avoid_force "0.4"
  341. cl_detail_avoid_radius "64"
  342. cl_detail_avoid_recover_speed "0.25"
  343. cl_detail_max_sway "5"
  344. cl_disablefreezecam "1"
  345. cl_disablehtmlmotd "0"
  346. cl_dm_buyrandomweapons "0"
  347. cl_downloadfilter "all"
  348. cl_embedded_stream_audio_volume "48"
  349. cl_embedded_stream_audio_volume_xmaster "0"
  350. cl_fixedcrosshairgap "-11.000000"
  351. cl_forcepreload "0"
  352. cl_freezecampanel_position_dynamic "1"
  353. cl_hud_background_alpha "0.5"
  354. cl_hud_bomb_under_radar "1"
  355. cl_hud_color "0"
  356. cl_hud_healthammo_style "0"
  357. cl_hud_playercount_pos "0"
  358. cl_hud_playercount_showcount "1"
  359. cl_hud_radar_scale "1"
  360. cl_idealpitchscale "0.8"
  361. cl_inventory_saved_filter2 "all"
  362. cl_inventory_saved_sort2 "inv_sort_age"
  363. cl_join_advertise "1"
  364. cl_minimal_rtt_shadows "1"
  365. cl_mouselook "1"
  366. cl_mute_all_but_friends_and_party "0"
  367. cl_mute_enemy_team "0"
  368. cl_obs_interp_enable "1"
  369. cl_observercrosshair "1"
  370. cl_playerspray_auto_apply "1"
  371. cl_radar_always_centered "1"
  372. cl_radar_icon_scale_min ".5"
  373. cl_radar_rotate "1"
  374. cl_radar_scale "0.4"
  375. cl_radar_square_with_scoreboard "1"
  376. cl_righthand "1"
  377. cl_rumblescale "1.0"
  378. cl_scalecrosshair "1"
  379. cl_scoreboard_mouse_enable_binding "+attack2"
  380. cl_show_clan_in_death_notice "1"
  381. cl_showhelp "0"
  382. cl_showloadout "1"
  383. cl_showpluginmessages2 "0"
  384. cl_spec_follow_grenade_key "0"
  385. cl_spec_mode "4"
  386. cl_teamid_overhead_always "1"
  387. cl_teammate_colors_show "1"
  388. cl_thirdperson "0"
  389. cl_timeout "30"
  390. cl_updaterate "64.000000"
  391. cl_use_opens_buy_menu "1"
  392. cl_viewmodel_shift_left_amt "0.500000"
  393. cl_viewmodel_shift_right_amt "0.250000"
  394. closecaption "0"
  395. closeonbuy "0"
  396. commentary_firstrun "0"
  397. con_enable "1"
  398. crosshair "1"
  399. dsp_enhance_stereo "0"
  400. engine_no_focus_sleep "50"
  401. force_audio_english "0"
  402. func_break_max_pieces "15"
  403. g15_update_msec "250"
  404. gameinstructor_enable "0"
  405. hud_scaling "0.950000"
  406. hud_showtargetid "1"
  407. hud_takesshots "0"
  408. joy_accelmax "1.0"
  409. joy_accelscale "4.0"
  410. joy_accelscalepoly "0.5"
  411. joy_advanced "1"
  412. joy_advaxisr "2"
  413. joy_advaxisu "4"
  414. joy_advaxisv "0"
  415. joy_advaxisx "3"
  416. joy_advaxisy "1"
  417. joy_advaxisz "0"
  418. joy_autoaimdampen "0.4"
  419. joy_autoAimDampenMethod "1"
  420. joy_autoaimdampenrange "0.99"
  421. joy_axisbutton_threshold "0.3"
  422. joy_cfg_preset "1"
  423. joy_circle_correct "1"
  424. joy_curvepoint_1 "0.005"
  425. joy_curvepoint_2 "0.1"
  426. joy_curvepoint_3 "0.4"
  427. joy_curvepoint_4 "0.8"
  428. joy_curvepoint_end "2"
  429. joy_diagonalpov "0"
  430. joy_display_input "0"
  431. joy_forwardsensitivity "-1.0"
  432. joy_forwardthreshold "0.1"
  433. joy_gamma "0.1"
  434. joy_inverty "0"
  435. joy_lowend "0.35"
  436. joy_lowend_linear "0.55"
  437. joy_lowmap "0.1"
  438. joy_movement_stick "0"
  439. joy_name "joystick"
  440. joy_no_accel_jump "0"
  441. joy_pitchsensitivity "-1"
  442. joy_pitchthreshold "0.15"
  443. joy_response_look "0"
  444. joy_response_look_pitch "1"
  445. joy_response_move "1"
  446. joy_sensitive_step0 "0.1"
  447. joy_sensitive_step1 "0.4"
  448. joy_sensitive_step2 "0.90"
  449. joy_sidesensitivity "1"
  450. joy_sidethreshold "0.15"
  451. joy_wingmanwarrior_centerhack "0"
  452. joy_wingmanwarrior_turnhack "0"
  453. joy_yawsensitivity "-1"
  454. joy_yawthreshold "0.15"
  455. joystick "0"
  456. joystick_force_disabled "1"
  457. joystick_force_disabled_set_from_options "1"
  458. lobby_default_privacy_bits1 "0"
  459. lockMoveControllerRet "0"
  460. lookspring "0"
  461. lookstrafe "0"
  462. m_customaccel "0"
  463. m_customaccel_exponent "1.05"
  464. m_customaccel_max "0"
  465. m_customaccel_scale "0.04"
  466. m_forward "1"
  467. m_mouseaccel1 "0"
  468. m_mouseaccel2 "0"
  469. m_mousespeed "0"
  470. m_pitch "0.022"
  471. m_rawinput "1"
  472. m_side "0.8"
  473. m_yaw "0.022"
  474. mapoverview_icon_scale "1.0"
  475. mat_monitorgamma "1.60000"
  476. mat_monitorgamma_tv_enabled "0"
  477. mat_powersavingsmode "0"
  478. mat_queue_report "0"
  479. mat_spewalloc "0"
  480. mat_texture_list_content_path ""
  481. mc_accel_band_size "0.5"
  482. mc_dead_zone_radius "0.06"
  483. mc_max_pitchrate "100.0"
  484. mc_max_yawrate "230.0"
  485. mm_csgo_community_search_players_min "3"
  486. mm_dedicated_search_maxping "25.000000"
  487. mm_server_search_lan_ports "27015,27016,27017,27018,27019,27020"
  488. muzzleflash_light "1"
  489. name "P90 1"
  490. net_allow_multicast "1"
  491. net_graph "1"
  492. net_graphheight "0"
  493. net_graphholdsvframerate "0"
  494. net_graphipc "0"
  495. net_graphmsecs "400"
  496. net_graphpos "2"
  497. net_graphproportionalfont "0"
  498. net_graphshowinterp "1"
  499. net_graphshowlatency "1"
  500. net_graphshowsvframerate "0"
  501. net_graphsolid "1"
  502. net_graphtext "1"
  503. net_maxroutable "1200"
  504. net_scale "5"
  505. net_steamcnx_allowrelay "1"
  506. npc_height_adjust "1"
  507. option_duck_method "0"
  508. option_speed_method "0"
  509. panorama_debugger_saved_height "720"
  510. panorama_debugger_saved_width "1280"
  511. panorama_debugger_saved_xpos "0"
  512. panorama_debugger_saved_ypos "0"
  513. password ""
  514. play_distance "1"
  515. player_botdifflast_s "2"
  516. player_competitive_maplist_2v2_7_0_3F9CD3AE "mg_de_inferno,mg_de_overpass,mg_de_cbble,mg_de_train,mg_de_shortnuke,mg_de_shortdust,mg_gd_rialto,mg_de_lake"
  517. player_competitive_maplist_8_7_0_77AED00 "mg_de_nuke,mg_de_dust2"
  518. player_nevershow_communityservermessage "0"
  519. player_teamplayedlast "3"
  520. player_wargames_list2_7_0_604 "mg_skirmish_armsrace,mg_skirmish_demolition,mg_skirmish_flyingscoutsman"
  521. r_drawmodelstatsoverlaymax "1.5"
  522. r_drawmodelstatsoverlaymin "0.1"
  523. r_drawtracers_firstperson "1"
  524. r_eyegloss "1"
  525. r_eyemove "1"
  526. r_eyeshift_x "0"
  527. r_eyeshift_y "0"
  528. r_eyeshift_z "0"
  529. r_eyesize "0"
  530. rate "786432"
  531. safezonex "1"
  532. safezoney "1"
  533. sc_enable "1.0"
  534. sc_joystick_map "1"
  535. sc_pitch_sensitivity "1.0"
  536. sc_yaw_sensitivity "1.0"
  537. scene_showfaceto "0"
  538. scene_showlook "0"
  539. scene_showmoveto "0"
  540. scene_showunlock "0"
  541. sensitivity "2.0"
  542. sk_autoaim_mode "1"
  543. skill "1.000000"
  544. snd_deathcamera_volume "0"
  545. snd_duckerattacktime "0.5"
  546. snd_duckerreleasetime "2.5"
  547. snd_duckerthreshold "0.15"
  548. snd_ducking_off "1"
  549. snd_ducktovolume "0.55"
  550. snd_hrtf_distance_behind "100"
  551. snd_hwcompat "0"
  552. snd_mapobjective_volume "0"
  553. snd_menumusic_volume "0"
  554. snd_mix_async "1"
  555. snd_mix_async_onetime_reset "1"
  556. snd_mixahead "0.05"
  557. snd_music_selection "2"
  558. snd_music_volume_onetime_reset_2 "1"
  559. snd_musicvolume_multiplier_inoverlay "0.000000"
  560. snd_mute_losefocus "1"
  561. snd_mvp_volume "0.000000"
  562. snd_pitchquality "1"
  563. snd_roundend_volume "0"
  564. snd_roundstart_volume "0"
  565. snd_tensecondwarning_volume "1"
  566. snd_use_hrtf_onetime_reset "0"
  567. sound_device_override "{0.0.0.00000000}.{b95551d8-e2c1-45fe-90a6-a50f3dd3d2cd}"
  568. spec_replay_autostart "0"
  569. spec_show_xray "0"
  570. spec_usenumberkeys_nobinds "1"
  571. ss_splitmode "0"
  572. store_version "1"
  573. suitvolume "0.25"
  574. sv_forcepreload "0"
  575. sv_log_onefile "0"
  576. sv_logbans "0"
  577. sv_logecho "1"
  578. sv_logfile "1"
  579. sv_logflush "0"
  580. sv_logsdir "logs"
  581. sv_noclipaccelerate "5"
  582. sv_noclipspeed "5"
  583. sv_pvsskipanimation "1"
  584. sv_skyname "nukeblank"
  585. sv_specaccelerate "5"
  586. sv_specnoclip "1"
  587. sv_specspeed "3"
  588. sv_unlockedchapters "1"
  589. sv_voiceenable "1"
  590. test_convar "0"
  591. texture_budget_background_alpha "128"
  592. texture_budget_panel_bottom_of_history_fraction ".25"
  593. texture_budget_panel_height "284"
  594. texture_budget_panel_width "512"
  595. texture_budget_panel_x "0"
  596. texture_budget_panel_y "450"
  597. tr_best_course_time "0"
  598. tr_completed_training "0"
  599. tv_nochat "0"
  600. ui_inventorysettings_recently_acknowledged ""
  601. ui_playsettings_maps_listen_casual "random_classic"
  602. ui_playsettings_maps_listen_competitive "random_classic"
  603. ui_playsettings_maps_listen_deathmatch "random_classic"
  604. ui_playsettings_maps_listen_scrimcomp2v2 "mg_de_inferno"
  605. ui_playsettings_maps_listen_skirmish "mg_skirmish_flyingscoutsman"
  606. ui_playsettings_maps_official_casual "mg_casualdelta"
  607. ui_playsettings_maps_official_deathmatch "mg_casualdelta"
  608. ui_playsettings_maps_official_survival "mg_xl_enclave"
  609. ui_playsettings_maps_workshop "@workshop/125610094/awp_india"
  610. ui_playsettings_mode_listen "casual"
  611. ui_playsettings_mode_official "casual"
  612. ui_playsettings_warmup_map_name "de_mirage"
  613. ui_popup_weaponupdate_version "1"
  614. ui_steam_overlay_notification_position "topleft"
  615. ui_vanitysetting_itemid "14695368586"
  616. ui_vanitysetting_loadoutslot "melee"
  617. ui_vanitysetting_model "models/player/custom_player/legacy/tm_leet_variantb.mdl"
  618. ui_vanitysetting_team "t"
  619. vgui_message_dialog_modal "1"
  620. viewmodel_fov "68"
  621. viewmodel_offset_x "2.5"
  622. viewmodel_offset_y "0"
  623. viewmodel_offset_z "-1.500000"
  624. viewmodel_presetpos "0"
  625. viewmodel_recoil "0"
  626. voice_caster_enable "0"
  627. voice_caster_scale "1"
  628. voice_enable "1"
  629. voice_forcemicrecord "0"
  630. voice_mixer_boost "0"
  631. voice_mixer_mute "0"
  632. voice_mixer_volume "1"
  633. voice_modenable "1"
  634. voice_scale "0.3"
  635. voice_system_enable "1"
  636. voice_threshold "4000"
  637. volume "0.5"
  638. vprof_graphheight "256"
  639. vprof_graphwidth "512"
  640. vprof_unaccounted_limit "0.3"
  641. vprof_verbose "1"
  642. vprof_warningmsec "10"
  643. weapon_accuracy_logging "0"
  644. windows_speaker_config "1"
  645. xbox_autothrottle "1"
  646. xbox_throttlebias "100"
  647. xbox_throttlespoof "200"
  648. zoom_sensitivity_ratio_joystick "1.0"
  649. zoom_sensitivity_ratio_mouse "1"
  650. cmd1 +jlook
  651.  
  652. bind "kp_downarrow" "buy negev; buy vest; buy vesthelm;"
  653. bind "kp_leftarrow" "buy nova; buy vest; buy vesthelm;"
  654. /////////////////////////////////////////////////////////////////////////////////
  655.  
  656.  
  657. //CROSSHAIR
  658. cl_crosshairstyle 4
  659. cl_crosshairsize 1
  660. cl_crosshairthickness 1.5
  661. cl_crosshairgap -6.5
  662. cl_crosshair_drawoutline 0
  663. cl_crosshair_outlinethickness 1
  664. cl_crosshairdot 0
  665. cl_crosshair_t 0
  666. cl_crosshaircolor 5
  667. cl_crosshaircolor_r 0
  668. cl_crosshaircolor_g 255
  669. cl_crosshaircolor_b 0
  670. cl_crosshairalpha 255
  671.  
  672. // repositions the gunmodel to mimic CSS more closely.
  673.  
  674. viewmodel_presetpos "0"
  675. viewmodel_fov "68"
  676. viewmodel_offset_x "2.5"
  677. viewmodel_offset_y "0"
  678. viewmodel_offset_z "-1.500000"
  679.  
  680. // removes the shifting of the arm when crouching down.
  681.  
  682. cl_viewmodel_shift_left_amt "0"
  683. cl_viewmodel_shift_right_amt "0"
  684. m_mousespeed 0
  685. m_mouseaccel 0
  686.  
  687. ////
  688.  
  689. // removes the bobbing of the weapon back and forth, when you run.
  690.  
  691. cl_bob_lower_amt "0"
  692. cl_bobamt_lat "0"
  693. cl_bobamt_vert "0"
  694.  
  695. // scales the HUD depending on what resolution you use, 1 is max.
  696.  
  697. hud_scaling "1"
  698.  
  699. // lowers delay between sounds.
  700.  
  701. snd_mixahead "0.05"
  702. snd_headphone_pan_exponent "2"
  703. snd_headphone_pan_radial_weight "2
  704. snd_legacy_surround "0"
  705. snd_pitchquality "1"
  706. dsp_enhance_stereo "0"
  707.  
  708.  
  709. // sets interpolation values.
  710.  
  711. cl_interp "0"
  712. cl_interp_ratio "1"
  713.  
  714. r_drawtracers_firstperson 1
  715.  
  716.  
  717. // causes the scope to move less while moving scoped and reduces bobbing effect
  718.  
  719. cl_bobcycle "2"
  720. cl_bob_lower_amt 5.000000
  721.  
  722.  
  723. cl_radar_scale "0.4"
  724. cl_forcepreload "0"
  725. cl_freezecampanel_position_dynamic "1"
  726. cl_hud_background_alpha "0.5"
  727. cl_hud_bomb_under_radar "1"
  728. cl_hud_color "0"
  729. cl_hud_healthammo_style "0"
  730. cl_hud_playercount_pos "0"
  731. cl_hud_playercount_showcount "1"
  732. cl_hud_radar_scale "1"
  733. cl_idealpitchscale "0.8"
  734. cl_inv_showdividerline "0"
  735. cl_inventory_saved_filter "all"
  736. cl_inventory_saved_sort "newest"
  737. cl_join_advertise "1"
  738. cl_loadout_colorweaponnames "0"
  739. cl_logofile "materials/vgui/logos/spray_bullseye.vtf"
  740. cl_minimal_rtt_shadows "1"
  741. cl_mouselook "1"
  742. cl_obs_interp_enable "1"
  743. cl_observercrosshair "1"
  744. cl_operation_premium_reminder_breakout "0"
  745. cl_radar_always_centered "1"
  746. cl_radar_icon_scale_min ".5"
  747. cl_radar_rotate "1"
  748. cl_radar_square_with_scoreboard "1"
  749.  
  750. ////////////////////////////////////////////////////////////////////
  751.  
  752. host_writeconfig
  753.  
  754. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  755. cl_crosshairstyle 4
  756. cl_crosshairsize 3
  757. cl_crosshairthickness 1
  758. cl_crosshairgap -1
  759. cl_crosshair_drawoutline 0
  760. cl_crosshair_outlinethickness 1
  761. cl_crosshairdot 0
  762. cl_crosshair_t 0
  763. cl_crosshaircolor 5
  764. cl_crosshaircolor_r 0
  765. cl_crosshaircolor_g 255
  766. cl_crosshaircolor_b 0
  767. cl_crosshairalpha 255
  768. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  769.  
  770.  
  771.  
  772. sensitivity 1.85
Add Comment
Please, Sign In to add comment