Erhan50

left 4 dead 2 cfg by erh

Mar 8th, 2025 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.52 KB | Gaming | 0 0
  1. //# TITLE : LEFT 4 DEAD 2 CONFIG
  2. //# LAST UPDATE : 08.03.2025
  3. //# AUTHOR : Erhan. [ https://steamcommunity.com/id/whoidk34 ]
  4.  
  5.  
  6. //# For competitive mods
  7. bind "F10" "disconnect"
  8. bind "v" "sm_vip"
  9. bind "x" "sm_afk"
  10. bind "g" "sm_drop"
  11. bind "b" "sm_buy"
  12. bind "z" "sm_zoey; sm_ellis"
  13. con_enable "1"
  14. sv_cheats 1
  15. god 1
  16. bind "c" "+voicerecord"
  17.  
  18.  
  19. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  20. //# MOVEMENT SETTINGS
  21. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  22. //#
  23. //# This is a must-have config for L4D2. It allows you to press and hold one movement key
  24. //# and then another key and after letting go that second key, the first key still is active. For
  25. //# Example: A (move left) ---> A + D (move right) ---> Let go D (move left). By default, your character
  26. //# will stop moving the moment you let go D. Also added to the null-cancelling script movement script
  27. //# is to ensure dsp_volume is always set to 0 (certain game action tend to switch this back to 1)
  28. //# https://steamcommunity.com/sharedfiles/filedetails/?id=487027371
  29. //#
  30. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  31.  
  32.  
  33. bind "W" "+mfwd"
  34. bind "A" "+mleft"
  35. bind "S" "+mback"
  36. bind "D" "+mright"
  37. alias +mfwd "-back; +forward; alias checkfwd +forward; dsp_volume 0"
  38. alias +mback "-forward; +back; alias checkback +back; dsp_volume 0"
  39. alias +mleft "-moveright; +moveleft; alias checkleft +moveleft; dsp_volume 0"
  40. alias +mright "-moveleft; +moveright; alias checkright +moveright; dsp_volume 0"
  41. alias -mfwd "-forward; checkback; alias checkfwd none"
  42. alias -mback "-back; checkfwd; alias checkback none"
  43. alias -mleft "-moveleft; checkright; alias checkleft none"
  44. alias -mright "-moveright; checkleft; alias checkright none"
  45. alias checkfwd "none"
  46. alias checkback "none"
  47. alias checkleft "none"
  48. alias checkright "none"
  49. alias none ""
  50.  
  51.  
  52. bind "LEFTARROW" "+left"
  53. bind "RIGHTARROW" "+right"
  54.  
  55.  
  56. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  57. //# NETGRAPH SETTINGS
  58. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  59. //#
  60. //# Net graph has some very good information. Good for knowing if the the server is having issue or the
  61. //# player is having issue (fps, choke, loss, etc.) especially if you are playing on competitive modes.
  62. //# https://developer.valvesoftware.com/wiki/TF2_Network_Graph
  63. //#
  64. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  65.  
  66.  
  67. net_graph 0
  68. net_graphheight 0
  69. net_graphpos 320
  70. net_graphproportionalfont 1
  71. net_graphshowinterp 0
  72. net_graphshowlatency 0
  73. net_graphsolid 0
  74. net_graphtext 1
  75. net_scale 999
  76.  
  77.  
  78. //# Show detailed net_graph when TAB is pressed and basic net_graph when not pressed
  79. alias "+showscores_custom" "+showscores; net_graph 4"
  80. alias "-showscores_custom" "-showscores; net_graph 0"
  81. bind "TAB" "+showscores_custom"
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88. budget_show_history 0
  89. cl_detail_avoid_force 0
  90. cl_detail_avoid_recover_speed 0
  91. cl_detail_max_sway 0
  92. cl_perf_wizard_enable 0
  93. cl_ragdoll_limit 0
  94. func_break_max_pieces 0
  95. mat_bloom_scalefactor_scalar 0
  96. mat_grain_scale_override 0
  97. r_cheapwaterend 1
  98. r_cheapwaterstart 1
  99. r_dynamic 1
  100. r_eyemove 0
  101. r_eyeshift_x 0
  102. r_eyeshift_y 0
  103. r_eyeshift_z 0
  104. r_eyesize 0
  105. r_PhysPropStaticLighting 0
  106.  
  107.  
  108. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  109. //# AUDIO SETTINGS
  110. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  111. //#
  112. //# These settings gives you the ultimate hearing experience for this game. You can hear SI much more
  113. //# clearer and the direction of sound is much more accurate than the default settings.
  114. //#
  115. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  116.  
  117.  
  118. // snd_musicvolume 0 //# Disables all background music and also Tank music, commented out this line to prevent overriding your setting
  119. // volume 1 //# Commented out this line to prevent overriding your setting
  120. // windows_speaker_config 1 //# Commented out this line to prevent overriding your existing speaker setup
  121. dsp_enhance_stereo 0
  122. dsp_slow_cpu 0
  123. dsp_volume 0
  124. snd_mixahead 0.06 //# If you face delayed or crackling or stuttering audio, set this incrementally higher from 0.06 and test. Do not go lower than 0.06. (default value is 0.1)
  125.  
  126.  
  127. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  128. //# MIC SETTINGS
  129. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  130. //#
  131. //# Basic mic settings. Nothing much here other than setting the values to ensure mic input and output
  132. //# is optimal.
  133. //#
  134. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  135.  
  136.  
  137. voice_enable 1
  138. voice_loopback 0 //# Set to 1 if you want to hear yourself when you use your mic
  139. voice_modenable 1
  140. voice_scale 1
  141. voice_threshold 0
  142. voice_vox 0
  143.  
  144.  
  145. //# Third person
  146.  
  147.  
  148. bind "f1" "thirdpersonshoulder"
  149. c_thirdpersonshoulderaimdist 360
  150. c_thirdpersonshoulderdist 90
  151. c_thirdpersonshoulderheight 15
  152. c_thirdpersonshoulderoffset 0
  153. c_mindistance 100
  154. c_maxdistance 100
  155. cam_idealdist 150
  156. cam_collision 1
  157. cam_idealdelta 0
  158. cam_ideallag 0
  159. cam_idealpitch 0
  160. cam_idealyaw 0
  161. cam_snapto 1
  162. sv_cheats 1
  163. god 1
  164.  
  165.  
  166. //# This is to load the addon font
  167. //# Please change the resolution to your own resolution
  168. alias "reloadfont" "mat_setvideomode 1920 1080 1; mat_setvideomode 1920 1080 0"
  169. reloadfont
  170.  
  171.  
  172. //# For bhoper
  173. alias "jump_and_attack" "+jump; +attack; wait 8; -attack; -jump"
  174. alias "jump_and_use" "+jump; +use; wait 8; -use; -jump"
  175.  
  176.  
  177. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  178. //# EXECUTE CONFIG
  179. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  180. //# Execute all config files
  181. //# ————————————————————————————————————————————————————————————————————————————————————————————————————
  182.  
  183.  
  184.  
  185.  
  186. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment