Advertisement
ReverendV92

L4D2

May 19th, 2020
2,366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.30 KB | None | 0 0
  1.  
  2. unbindall
  3. key_updatelayout // Update to currently connected keyboard layout
  4.  
  5. // Row 1 Binds
  6.  
  7. bind escape cancelselect // Important
  8. bind f1 "Vote Yes"
  9. bind f2 "Vote No"
  10. bind f3 chooseteam
  11. // bind f4
  12. // bind f5
  13. // bind f6
  14. // bind f7
  15. bind f8 "jpeg;screenshot"
  16. // bind f9
  17. // bind f10
  18. // bind f11
  19. // bind f12
  20. // bind prntscrn
  21. // bind scrolllock
  22. // bind pause
  23. // bind numlock // "pause" registers as "numlock"
  24.  
  25. // Row 2 Binds
  26.  
  27. bind ` toggleconsole // Important
  28. bind 1 slot1
  29. bind 2 slot2
  30. bind 3 slot3
  31. bind 4 slot4
  32. bind 5 slot5
  33. bind 6 slot6
  34. bind 7 slot7
  35. bind 8 slot8
  36. bind 9 slot9
  37. bind 0 slot10
  38. // bind -
  39. // bind =
  40. // bind backspace
  41.  
  42. // Row 3 Binds
  43.  
  44. bind tab +showscores
  45. bind q lastinv
  46. bind w +forward
  47. bind e +use
  48. bind r +reload
  49. bind t "impulse 201"
  50. bind y "scripted_user_func drop_fire"
  51. // bind u
  52. // bind i
  53. // bind o
  54. // bind p
  55. // bind [
  56. // bind ]
  57. // bind \
  58.  
  59. // Row 4 Binds
  60.  
  61. // bind capslock
  62. bind a +moveleft
  63. bind s +back
  64. bind d +moveright
  65. bind f "impulse 100"
  66. // bind g
  67. // bind h
  68. // bind j
  69. // bind k
  70. // bind l
  71. // bind semicolon
  72. // bind '
  73. // bind enter
  74.  
  75. // Row 5 Binds
  76.  
  77. bind shift +voicerecord
  78. bind z +lookspin
  79. bind x "+mouse_menu QA"
  80. bind c "+mouse_menu Orders"
  81. // bind v
  82. // bind b
  83. // bind n
  84. // bind m
  85. // bind ,
  86. // bind .
  87. // bind /
  88. // bind rshift
  89.  
  90. // Row 6 Binds
  91.  
  92. bind ctrl +duck
  93. // bind lwin
  94. // bind alt
  95. bind space +jump
  96. // bind ralt
  97. // bind rwin
  98. // bind app
  99. // bind rctrl
  100.  
  101. // Arrow Key Area Binds
  102.  
  103. // bind ins
  104. bind home messagemode
  105. // bind pgup
  106. // bind del
  107. bind end messagemode2
  108. // bind pgdn
  109.  
  110. // bind uparrow
  111. // bind leftarrow
  112. // bind rightarrow
  113. // bind downarrow
  114.  
  115. // Numpad Binds
  116.  
  117. // bind numlock
  118. // bind kp_slash
  119. // bind kp_multiply
  120. // bind kp_minus
  121. // bind kp_home
  122. // bind kp_uparrow
  123. // bind kp_pgup
  124. // bind kp_add
  125. // bind kp_leftarrow
  126. // bind kp_5
  127. // bind kp_rightarrow
  128. // bind kp_end
  129. // bind kp_downarrow
  130. // bind kp_pgdn
  131. // bind kp_enter
  132. // bind kp_ins
  133. // bind kp_del
  134.  
  135. bind mouse1 +attack
  136. bind mouse2 +attack2
  137. bind mouse3 +zoom
  138. // bind mouse4
  139. // bind mouse5
  140. bind mwheelup invprev
  141. bind mwheeldown invnext
  142.  
  143. sv_consistency 0
  144. fps_max 60
  145. m_rawinput 1
  146. sv_pure 0
  147. sv_voiceenable 1
  148.  
  149. motd_intros 0
  150.  
  151. z_nightvision_b 255
  152. z_nightvision_g 255
  153. z_nightvision_r 255
  154. z_wound_client_disabled 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement