Advertisement
Guest User

l4d2 autoexec.cfg

a guest
Oct 14th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 KB | None | 0 0
  1. exec scope
  2.  
  3.  
  4. // RATE SETTINGS & NET USAGE GRAPH SETTINGS
  5. rate "100000" //(Default 10000)
  6. cl_cmdrate "101" //(Default 30)
  7. cl_updaterate "101" //(Default 20)
  8. cl_interp "0" //(Default 0) THIS IS THE LERP YOUR GAME WILL LOAD IN AT.
  9. cl_interp_ratio "-1" //(Default 2)
  10. net_graph "318" //(Default 0)
  11. net_graphproportionalfont "1" //(Default 1)
  12. net_graphpos 1 //(Default 1)
  13.  
  14.  
  15. //NET GRAPH TOGGLE
  16. alias graph "graph1"
  17. alias graph1 "net_graph 1; alias graph graph2"
  18. alias graph2 "net_graph 2; alias graph graph3"
  19. alias graph3 "net_graph 3; alias graph graph4"
  20. alias graph4 "net_graph 4; alias graph graph5"
  21. alias graph5 "net_graph 0; alias graph graph1"
  22. bind "/" "graph"
  23.  
  24.  
  25. //LERP TOGGLE
  26. alias lerp "10_lerp"
  27. alias 0_lerp "cl_interp 0; alias lerp 0_lerp"
  28. alias 10_lerp "cl_interp 0.010; alias lerp 16.7_lerp"
  29. alias 16.7_lerp "cl_interp 0.0167; alias lerp 33.3_lerp"
  30. alias 33.3_lerp "cl_interp 0.0333; alias lerp 67_lerp"
  31. alias 67_lerp "cl_interp 0.067; alias lerp 100_lerp"
  32. alias 100_lerp "cl_interp 0.100; alias lerp 10_lerp"
  33. bind "\" "lerp"
  34.  
  35.  
  36. //MOUSE SETTINGS
  37. m_customaccel "0" //Custom mouse acceleration (0 disable, 1 to enable, 2 enable with separate yaw/pitch rescale).
  38. m_customaccel_exponent "0" //Mouse move is raised to this power before being scaled by scale factor.
  39. m_customaccel_max "0" //Max mouse move scale factor, 0 for no limit
  40. m_customaccel_scale "0" //Custom mouse acceleration value.
  41. m_mouseaccel1 "0" //Windows mouse acceleration initial threshold (2x movement).
  42. m_mouseaccel2 "0" //Windows mouse acceleration secondary threshold (4x movement).
  43. m_mousespeed "0" //Windows mouse speed factor (range 1 to 20).
  44. m_filter "0" //Mouse filtering (set this to 1 to average the mouse over 2 frames).
  45. m_filter2 "0" //Mouse filtering (set this to 1 to average the mouse over 2 frames).
  46. m_rawinput "0" //Use Raw Input for mouse input
  47.  
  48. alias "Speed+" "+speed; bind "CTRL" "Speed-""
  49. alias "Speed-" "-speed; bind "CTRL" "Speed+""
  50. bind "CTRL" "Speed+"
  51.  
  52. alias "Toggle_Duck+" "+duck; bind "SHIFT" "Toggle_Duck-""
  53. alias "Toggle_Duck-" "-duck; bind "SHIFT" "Toggle_Duck+""
  54. bind "SHIFT" "Toggle_Duck+"
  55.  
  56.  
  57.  
  58. // the jukery is in business
  59. // Null-cancelling movement script
  60. // (prevents you from pressing two opposing directions, which causes you to stop moving)
  61.  
  62.  
  63. bind "W" "+mfwd"
  64. bind "A" "+mleft"
  65. bind "S" "+mback"
  66. bind "D" "+mright"
  67.  
  68. alias +mfwd "dsp_volume 0;-back;+forward;alias checkfwd +forward"
  69. alias +mback "dsp_volume 0;-forward;+back;alias checkback +back"
  70. alias +mleft "dsp_volume 0;-moveright;+moveleft;alias checkleft +moveleft"
  71. alias +mright "dsp_volume 0;-moveleft;+moveright;alias checkright +moveright"
  72. alias -mfwd "-forward;checkback;alias checkfwd none"
  73. alias -mback "-back;checkfwd;alias checkback none"
  74. alias -mleft "-moveleft;checkright;alias checkleft none"
  75. alias -mright "-moveright;checkleft;alias checkright none"
  76. alias checkfwd "none"
  77. alias checkback "none"
  78. alias checkleft "none"
  79. alias checkright "none"
  80. alias none ""
  81.  
  82. dsp_enhance_stereo "0"
  83. dsp_slow_cpu "0"
  84.  
  85. //Echo
  86.  
  87. echo " "
  88. echo " * * * * * * * * * * * * * "
  89. echo " * * "
  90. echo " * autoexec.cfg loaded * "
  91. echo " * * "
  92. echo " * * * * * * * * * * * * * "
  93. echo " "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement