Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. //Startoptionen -console -d3d9ex -noaafonts -high -novid -nojoy -freq 144 -refresh 144 +cl_cmdrate 128 +cl_updaterate 128 -language english +mat_queue_mode "2" +mat_queue_priority "1" +cl_forcepreload "1"
  2.  
  3.  
  4.  
  5. //Bobbing and Movement Shifting - remove all the dumb view bob
  6. cl_viewmodel_shift_left_amt "0"
  7. cl_viewmodel_shift_right_amt "0"
  8. viewmodel_fov "90"
  9. viewmodel_offset_x "-2"
  10. viewmodel_offset_y "-2"
  11. viewmodel_offset_z "-2"
  12. viewmodel_presetpos "4"
  13. cl_bob_lower_amt "0"
  14. cl_bobamt_lat "0"
  15. cl_bobamt_vert "0"
  16. cl_showloadout "1"
  17. cl_bobcycle "1"
  18. viewmodel_recoil "0"
  19. cl_predict "1"
  20. cl_predictweapons "1"
  21.  
  22. //Bypass OS Interface & Acceleration - yes
  23. m_rawinput "1"
  24. m_mouseaccel1 "0"
  25. m_mouseaccel2 "0"
  26. joystick "0"
  27.  
  28. alias "+jumpthrow" "+jump; -attack"
  29. alias "-jumpthrow" "-jump"
  30. bind "v" "+jumpthrow"
  31.  
  32. //Crosshair
  33.  
  34. cl_crosshairalpha "245"
  35. cl_crosshaircolor "1"
  36. cl_crosshaircolor_b "255"
  37. cl_crosshaircolor_r "255"
  38. cl_crosshaircolor_g "0"
  39. cl_crosshairdot "0"
  40. cl_crosshairgap "0"
  41. cl_crosshairsize "2"
  42. cl_crosshairstyle "4"
  43. cl_crosshairusealpha "1"
  44. cl_crosshairthickness "0.5"
  45. cl_fixedcrosshairgap "0"
  46. cl_crosshair_drawoutline "1"
  47. cl_crosshair_outlinethickness "1"
  48. sensitivity "2"
  49. zoom_sensitivity_ratio_mouse "1"
  50. m_yaw "0.0165"
  51.  
  52. //Deathcam - optional again
  53. cl_disablefreezecam "1"
  54.  
  55. //Gun Tracers - these are bad, really misleading
  56. r_drawtracers_firstperson "0"
  57. bind "j" "r_cleardecals"
  58.  
  59. //Help Messages - you dont need these
  60. gameinstructor_enable "0"
  61. cl_autohelp "0"
  62. cl_showhelp "0"
  63. cl_mute_enemy_team "0"
  64.  
  65. //HUD - adjust for preference i guess
  66. hud_scaling ".95"
  67. hud_showtargetid "1"
  68. net_graph "1"
  69. net_graphproportionalfont "0.5"
  70.  
  71. //Max Ping - adjust for preference
  72. mm_dedicated_search_maxping "30"
  73.  
  74. //MOTD - because ♥♥♥♥ pinion
  75. cl_disablehtmlmotd "0"
  76. cl_downloadfilter "nosounds"
  77.  
  78. //Other Stuff
  79. cl_teamid_overhead_always "2"
  80. cl_autowepswitch "0"
  81. cl_use_opens_buy_menu "0"
  82. bind "KP_END" "takingfire"
  83. bind "KP_DOWNARROW" "coverme"
  84. bind "KP_PGDN" "getout"
  85. bind "KP_LEFTARROW" "report"
  86. bind "KP_5" "reportingin"
  87. bind "KP_RIGHTARROW" "regroup"
  88. bind "KP_HOME" "enemydown"
  89. bind "KP_UPARROW" "fps_max 60"
  90. bind "KP_PGUP" "fps_max 999"
  91. bind "n" "noclip"
  92.  
  93. //Performance & Rates - rates for 128 tick servers, matchmaking is 64 but this is usually fine
  94. cl_forcepreload "1"
  95. cl_interp "0"
  96. cl_interp_ratio "1"
  97. cl_cmdrate "128"
  98. cl_updaterate "128"
  99. rate "1048576"
  100. fps_max "999"
  101. fps_max_menu "144"
  102.  
  103. //Radar - radar settings + adjustment on numpad enter
  104. cl_radar_rotate "1"
  105. cl_radar_always_centered "1"
  106. cl_radar_scale "0.25"
  107. cl_radar_icon_scale_min "0.5"
  108. bind "kp_enter" "incrementvar cl_radar_scale 0.25 0.52 0.05" // this lets you adjust radar scale on numpad enter
  109.  
  110. //Sound - less delayed, better sound
  111. volume 0.8
  112. windows_speaker_config "1"
  113. snd_mixahead "0.05"
  114. snd_musicvolume "0.15"
  115. snd_headphone_pan_exponent "2"
  116. snd_headphone_pan_radial_weight "1"
  117. snd_rear_headphone_position "90"
  118. bind "kp_minus" "toggle voice_enable 1 0" // this lets you turn voice on and off on numpad minus
  119.  
  120. echo "Autoexec Config loaded" // make sure this autoexec does its fine
  121. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement