Advertisement
asdasfweryh

Untitled

Nov 17th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. //enable console
  2. con_enable 1
  3.  
  4. // removes tracers following your own fire. Other players' tracers will not be affected.
  5. r_drawtracers_firstperson 0
  6.  
  7. // repositions the gunmodel to mimic CSS more closely. The range of viewmodel_fov is 54 to 68, 60 is default.
  8. viewmodel_fov "65"
  9. viewmodel_offset_x "2"
  10. viewmodel_offset_y "2"
  11. viewmodel_offset_z "-2"
  12.  
  13. //HUD - adjust for preference i guess
  14. hud_scaling ".95"
  15. hud_showtargetid "1"
  16.  
  17. //cl_crosshair_drawoutline 1
  18. //cl_crosshair_outlinethickness 1
  19. //cl_crosshaircolor 5
  20. //cl_crosshaircolor_b 255
  21. //cl_crosshaircolor_r 255
  22. //cl_crosshaircolor_g 255
  23. //cl_crosshairalpha 255
  24. //cl_crosshairthickness 2.6
  25. //cl_crosshairsize 0.5
  26. //cl_crosshairgap -1
  27. //cl_crosshairdot 0
  28. cl_crosshaircolor "5";
  29. cl_crosshaircolor_b "255";
  30. cl_crosshaircolor_r "255";
  31. cl_crosshaircolor_g "255";
  32. cl_crosshairdot "0";
  33. cl_crosshairgap "0.5";
  34. cl_crosshairsize "4";
  35. cl_crosshairstyle "5";
  36. cl_crosshairusealpha "1";
  37. cl_crosshairthickness "1.";
  38. cl_crosshair_drawoutline "1";
  39. cl_crosshair_outlinethickness "1";
  40.  
  41.  
  42.  
  43. // removes the shifting of the arm when crouching down.
  44. cl_viewmodel_shift_left_amt "0"
  45. cl_viewmodel_shift_right_amt "0"
  46.  
  47. //Bobbing and Movement Shifting - remove all the dumb view bob
  48. cl_bob_lower_amt "0"
  49. cl_bobamt_lat "0"
  50. cl_bobamt_vert "0"
  51. cl_bobcycle "0.98"
  52.  
  53. //1 to always show loadout 0 to have it fade
  54. cl_showloadout "1"
  55.  
  56. // causes the scope to move less when moving scoped in and reduces bobbing effect
  57. cl_bobcycle "0.98"
  58.  
  59. //Sound - less delayed, better sound
  60. windows_speaker_config "1"
  61. snd_mixahead "0.05"
  62. snd_musicvolume "0.5"
  63. snd_headphone_pan_exponent "2"
  64. snd_headphone_pan_radial_weight "1"
  65. snd_rear_headphone_position "90"
  66.  
  67. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  68. cl_forcepreload "1"
  69. cl_interp "0"
  70. cl_interp_ratio "1"
  71. cl_cmdrate "128"
  72. cl_updaterate "128"
  73. rate "786432"
  74.  
  75. // shows a netgraph on the screen with useful information about fps, ping and lerp. IMPORTANT: net_graph is considered a cheat in most leagues, so don't include that if you're considering playing competitively.
  76.  
  77. net_graph 1
  78. net_graphproportionalfont 0
  79. net_graphheight 1052 (change this)
  80. net_graphpos 1
  81. //cl_showfps 1
  82.  
  83. // 1 is for right hand 0 is for left
  84. cl_righthand "0"
  85.  
  86. //Help Messages - you dont need these
  87. gameinstructor_enable "0"
  88. cl_autohelp "0"
  89. cl_showhelp "0"
  90.  
  91. //Bypass OS Interface & Acceleration - yes
  92. m_rawinput "0"
  93. m_mouseaccel1 "0"
  94. m_mouseaccel2 "0"
  95. zoom_sensitivity_ratio 1.2
  96.  
  97. // changes the size of the HUD (Heads Up Display - ammo, health, radar, etc.). Hud_scaling "1" is maximum.
  98. hud_scaling "2"
  99.  
  100. // sets your maximum allowable ping in your matchmaking.
  101. mm_session_max_ping 100
  102.  
  103. // sets your options on what downloads you allow from a server: all, none, or nosounds
  104. cl_downloadfilter all
  105. //Radar - radar settings + adjustment on numpad enter
  106. cl_radar_scale "0.3"
  107. cl_radar_rotate "0"
  108. cl_radar_always_centered "0"
  109. cl_radar_scale "0.32"
  110. cl_radar_icon_scale_min ".5"
  111. bind "kp_enter" "incrementvar cl_radar_scale 0.32 0.52 0.05" // this lets you adjust radar scale on numpad enter
  112.  
  113. //MOTD - because ???? pinion
  114. cl_disablehtmlmotd "1"
  115. cl_downloadfilter "nosounds"
  116.  
  117. //Deathcam - optional again
  118. cl_disablefreezecam "1"
  119.  
  120. r_drawtracers_firstperson 0
  121. cl_autowepswitch "0"
  122. fps_max "999"
  123. hud_showtargetid "1"
  124.  
  125. // shows a message that the autoexec was successfully loaded in your console.
  126. echo "autoexec.cfg loaded."
  127. // makes cfg read/write
  128. host_writeconfig
  129.  
  130.  
  131.  
  132. // exec forestcross.cfg
  133. exec IngameMouseAccelOff.cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement