Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. // Weak CPU
  2. cl_cmdrate 66 // Your framerate should always be higher than your cmdrate.
  3. cl_updaterate 66 // Rate at wich you receive updates from the server.
  4. cl_interp 0 // By setting this higher than cl_interp_ratio / cl_updaterate,
  5. // you are slightly increasing your interp for no reason.
  6. // Also, interp is mostly preference at lower values
  7. // and depends on how stable your connection is.
  8. cl_interp_ratio 1
  9. cl_lagcompensation 1 // Ensure lag compensation is turned on
  10. cl_pred_optimize 1 // Mode 1 because 2 has a bug currently.
  11. cl_smooth 0 // Smooths your view to prevent it jumping around.
  12. cl_smoothtime 0.1 // No reason to change this when cl_smooth is 0
  13. rate 50000 // Affects how many packets you can send out
  14. net_compresspackets 1 // Compress packets to prevent split packets
  15. net_splitrate 1 // Do not split multiple packets for bad PCs that cannot handle the extra load
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement