Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. // Updated 05/19/2011
  2. // 8.3ms WHITE lerp - Leaves system defaults for graphics - cmd-line/bug fix/esea binds
  3.  
  4.  
  5. //Online Player Cvars/Binds
  6.  
  7. rate 100000 // Setting higher then 25000 will allow for faster downloading/server connection if not capped
  8. echo Rate Optimized.
  9. cl_smooth 1 // Smooths player movement based on digital locations, best when turned on to avoid hitbox illusions
  10. cl_smoothtime 0.1 // 0.1 = 100ms(Best for online), 0.05 = 50ms, 0.01 = 10ms(Best for LAN) - This is the amount of time interpolation will be sync'd to the hitbox/model(matching to ping ms is optimal)
  11. echo Model Smoothing Optimized.
  12. cl_interp 0 // Locked setting, also reduces interpolation to 10ms(matching LAN smoothtime)
  13. cl_interp_ratio 1 // Simply causes the interpolation delay to be calculated off the clients cl_updaterate
  14. echo Interpolation Optimized.
  15. cl_updaterate 1000 // Setting it higher will allow for the server to send bigger packets if it allows(fixes orange 10 lerp glitch)
  16. cl_cmdrate 100 // Most servers cap this value anyway, so it may change to 67 on the orange box engine
  17. echo Network Settings optimized.
  18. fps_max 0 // 0 = unlimited, caping is good on CRTs - but its 2011, LCD doesn't matter and vsync causes to much of a delay for syncing the frames that its not viable in competitive play
  19. cl_minmodels 1 // I guess there is some known glitch in CS:S with models - using this will fix it so you don't have to start/stop records
  20. cl_ragdoll_physics_enable 0 // Turns off bodies, most useful when going up stairs and you cant see down because of a body and you get shot in the head because they have it turned off
  21. bind k "say .ready" // Useful for ESEA if you don't have these bound already
  22. bind l "say .notready" // Useful for ESEA if you don't have these bound already
  23. echo Misc Binds/Fixes Applied.
  24. echo Happy Fragging!
  25.  
  26.  
  27. //Command-line Parameters from Valve:
  28. //-noforcemparms -noforcemaccel -noforcemspd -nocrashdialog -freq 75 -console
  29.  
  30.  
  31.  
  32. //By: Spencer "SupagreeN" Weston
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement