Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. ////////////////////////////////////
  2. //Network and Interpolation Settings
  3.  
  4. rate 128000 // def. 80000 - Maximum Download Bandwidth in byte per second. - DO NOT USE A LOWER VALUE OR A PUPPY DIES!
  5. cl_cmdrate 128 // def. 64 - Maximum Command Packets per second, sending to the Server. DO NOT SET THIS HIGHER THAN YOUR FPS!
  6. cl_updaterate 128 // def. 64 - Maximum number of Update Packets per second, received from the Server. Gets adjusted by the Servers TickRate if TR<cl_updaterate
  7. cl_interp 0 // def. 0 - DO NOT CHANGE THIS OR A KITTY DIES!
  8. cl_interp_ratio 2 // def. 2 - Ratio of interpolation Time. cl_interp_ratio : cl_updaterate = cl_interp -> lerp in ms
  9.  
  10. // Recommended Settings if cmdrate equal updaterate:
  11. // interp_ratio 2 updaterate 64 = 31.25 ms lerp - Public @ fps<128
  12. // interp_ratio 2 updaterate 128 = 15.625 ms lerp - Public @ fps>128
  13. // interp_ratio 1 updaterate 64 = 15.625 ms lerp - Competitive @ fps<128
  14. // interp_ratio 1 updaterate 128 = 7.8125ms lerp - Competitive @ fps>128
  15.  
  16. bind "KP_MULTIPLY" "buy p250" // Multiply key, buys P250
  17. bind "KP_HOME" "buy ak47;buy m4a1" // 7 key, buys AK, M4 or silenced M4
  18. bind "KP_UPARROW" "buy p90" // 8 key, buys P90
  19. bind "KP_PGUP" "buy Taser" // 9 key, buys taser
  20. bind "KP_LEFTARROW" "buy defuser" // 4 key, buys defuse kit and rescue kit
  21. bind "KP_5" "buy vesthelm;buy vest" // 5 key, tries to buy kevlar and helmet, if not enough money only buys kevlar
  22. bind "KP_RIGHTARROW" "buy molotov;buy incgrenade" // 6 key, buys molotov or incendiary grenade
  23. bind "KP_END" "buy hegrenade" // 1 key, buys HE grenade
  24. bind "KP_DOWNARROW" "buy flashbang" // 2 key, buys ONE flashbang, press twice to buy 2 flashbangs
  25. bind "KP_PGDN" "buy smokegrenade" // 3 key, buys Smokegrenade
  26. bind "KP_DEL" "buy fn57" // Dot or comma key, buys Five-SeveN/Tec9/CZ75-A
  27. bind "KP_PLUS" "buy ak47;buy m4a1;buy vesthelm;buy vest;buy smokegrenade;buy flashbang;buy hegrenade;buy defuser;buy flashbang" // Plus key, buys full equipment
  28.  
  29. developer "1"
  30. con_filter_text "Damage Given"
  31. con_filter_text_out "Player:"
  32. con_filter_enable "2"
  33.  
  34. //grenade jump throw
  35. alias "+jumpthrow" "+jump;-attack"
  36. alias "-jumpthrow" "-jump"
  37. bind "f" "+jumpthrow"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement