Advertisement
Guest User

[L4D2]KHConfig

a guest
Jan 19th, 2018
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. //KH Config by KoMiKoZa
  2. //Date modified: January 20, 2018
  3.  
  4. //Netcode, lerp & rates
  5.  
  6. cl_cmdrate "100" // Command packets sent to server per second (Default 30)
  7. cl_updaterate "100" // Packets per second you request from the server (Default 20)
  8. cl_interp "0.066" // Interpolation value to match updaterate (Default 0.1)
  9. rate "100000"
  10.  
  11. //Hands FOV (how much of your hands you can see)
  12. cl_viewmodelfovsurvivor 80
  13.  
  14. //L4D2 Default Crosshair Customization
  15. //In order to enable it, delete all "//" before the functions (only functions)
  16. //These are optional, the default crosshair is customized, but I recommend getting my custom ones (workshop addons).
  17. //http://steamcommunity.com/workshop/filedetails/?id=1108282896 - Custom Crosshairs
  18.  
  19. //Crosshair Settings (Currently thin and yellow, adjust the values to your liking)
  20. //cl_crosshair_red 255 //RGB Value 1 (Red)
  21. //cl_crosshair_green 255 //RGB Value 2 (Green)
  22. //cl_crosshair_blue 0 //RGB Value 3 (Blue)
  23. //cl_crosshair_thickness 1.7 //Adjusting crosshair's thickness.
  24. //cl_crosshair_alpha 70 //Adjusting crosshair's transparency. From 0 (invisbile) to 255 (non- transparent).
  25.  
  26. //Binds
  27. alias +XhairOn +xhair1 //Default crosshair on/off by pressing f3
  28. alias +xhair1 "crosshair 1; alias +XhairOn +xhair2;
  29. alias +xhair2 "crosshair 1; alias +XhairOn +xhair1;
  30.  
  31. bind "TAB" "+sb"; // Scoreboard + netgraph bind
  32. alias "+sb" "+showscores; mygraph";
  33. alias "-sb" "-showscores; net_graph 0";
  34. alias "mygraph" "net_graph 4"; // A value from 1-5 to adjust which graph will be shown
  35.  
  36. alias +toggleclerp +clerp1
  37. alias +clerp1 "cl_interp_ratio 0; cl_interp 0; alias +toggleclerp +clerp2; say [KHConfig Report]: Zero Lerp has been activated!";
  38. alias +clerp2 "cl_interp_ratio 2; cl_interp 0.066; alias +toggleclerp +clerp1; say [KHConfig Report]: Zero Lerp has been deactivated!";
  39.  
  40. bind f3 "+XhairOn"//Xhair button on/off
  41. bind F4 "+toggleclerp" //Lerp button on/off
  42. bind F6 "disconnect" //Disconnect from a game
  43. bind F7 "exit" //Exit the game completely
  44.  
  45. //DSP Volume Accuracy (Improves the surround sound to detect SI easier)
  46.  
  47. bind "W" "+mfwd"
  48. bind "A" "+mleft"
  49. bind "S" "+mback"
  50. bind "D" "+mright"
  51.  
  52. alias +mfwd "dsp_volume 0;-back;+forward;alias checkfwd +forward"
  53. alias +mback "dsp_volume 0;-forward;+back;alias checkback +back"
  54. alias +mleft "dsp_volume 0;-moveright;+moveleft;alias checkleft +moveleft"
  55. alias +mright "dsp_volume 0;-moveleft;+moveright;alias checkright +moveright"
  56. alias -mfwd "-forward;checkback;alias checkfwd none"
  57. alias -mback "-back;checkfwd;alias checkback none"
  58. alias -mleft "-moveleft;checkright;alias checkleft none"
  59. alias -mright "-moveright;checkleft;alias checkright none"
  60. alias checkfwd "none"
  61. alias checkback "none"
  62. alias checkleft "none"
  63. alias checkright "none"
  64. alias none ""
  65.  
  66. dsp_enhance_stereo "0"
  67. dsp_slow_cpu "0"
  68.  
  69. echo KHConfig has been successfully executed!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement