Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2016
726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. //DynamiC's Competitive TF2 Config
  2.  
  3. //This config is designed to help improve competitive experience, NOT improve FPS.
  4. //Some good FPS config's can be found here: http://www.teamfortress.tv/25328/comanglia-s-config-fps-guide
  5. //This config should probably be used with an FPS config to help reduce clutter and for an FPS boost. There may be some overlap between this config and some fps configs. Just delete that part of the config to fix any potential bugs.
  6. //
  7. //
  8. //
  9. //Interp Settings (Thanks to comanglia)
  10. //Interp is the time between your click and when the bullet leaves your gun. Impossible to play competitive without these.
  11. cl_cmdrate 67
  12. cl_interp 0 // change to whatever you like for certain classes projectiles/popping uber/flames = 0 hitscan = 0.031 on bad connections = 0.062
  13. cl_interp_ratio 1
  14. cl_lagcompensation 1
  15. cl_pred_optimize 2
  16. cl_smooth 0
  17. cl_smoothtime 0.01
  18. cl_updaterate 67
  19. rate 60000 // anything above 62,000 is completely useless, anything above 48,000ish is useless in HL
  20.  
  21. //General
  22. //General improvements to the HUD and other things
  23. tf_hud_show_servertimelimit 1// Shows map time limit. Very useful for Control Point maps.
  24. hud_saytext_time 10 // Set to 0 to disable chat. Chat is very useful for uber binds and such. Also good for spamfests in pregame.
  25. hud_fastswitch 1 // Fast Wepon switch. Must have for comp.
  26. cl_autoreload 1 // Auto-Reload. Also must have for comp.
  27. m_rawinput 1 // Raw Input. More accurate sensitivities.
  28. tf_scoreboard_ping_as_text 1 // Numeric ping on the scoreboard. Better for comp as the bars are inaccurate.
  29.  
  30. //P-Rec Improvements (thanks to MUG)
  31. prec_mode 2 //Record dmeos in tournament mode only.
  32. prec_screens 1 //Capture screenshots of scoreboard and status. Mandatory for ETF2L.
  33. prec_dir demos //Saves to "demos" sub folder, so you don't clog up your tf folder with files. Type demos/ in front of demo name when using playdemo or timedemo.
  34.  
  35. //Voice Chat
  36. //Turns on voice chat. Set to 0 to disable. Useful in lobbies. Horrible in pubs.
  37. voice_enable 1
  38.  
  39. //Basic Visual Improvements
  40. fov_desired 90
  41. viewmodel_fov 75 //Would set it higher but its the current limit of matchmaking.
  42. mat_vsync 0 // Horrible setting causing i/o lag.
  43. glow_outline_effect_enable 1 // Must have for HL. Enables outline of payload cart.
  44.  
  45. // Reload graphics and sound to fix glitches.
  46. //Better at fixing HUD glitches than hud_reloadscheme alone. Very useful.
  47. bind "f8" "record temp; stop; snd_restart; hud_reloadscheme;heartbeat;"
  48.  
  49. //Null-cancelling movement script
  50. //Means that you dont stop moving when you hold down two movement keys at once.
  51. bind w +mfwd
  52. bind s +mback
  53. bind a +mleft
  54. bind d +mright
  55.  
  56. alias +mfwd "-back;+forward;alias checkfwd +forward"
  57. alias +mback "-forward;+back;alias checkback +back"
  58. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
  59. alias +mright "-moveleft;+moveright;alias checkright +moveright"
  60. alias -mfwd "-forward;checkback;alias checkfwd none"
  61. alias -mback "-back;checkfwd;alias checkback none"
  62. alias -mleft "-moveleft;checkright;alias checkleft none"
  63. alias -mright "-moveright;checkleft;alias checkright none"
  64. alias checkfwd none
  65. alias checkback none
  66. alias checkleft none
  67. alias checkright none
  68. alias none ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement