Advertisement
ReverendV92

Empty Source Engine Binds Config

Nov 23rd, 2019
756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.88 KB | None | 0 0
  1. key_updatelayout // Update to currently connected keyboard layout
  2.  
  3. // Row 1 Binds
  4.  
  5. bind escape cancelselect // Important
  6. // bind f1
  7. // bind f2
  8. // bind f3
  9. // bind f4
  10. // bind f5
  11. // bind f6
  12. // bind f7
  13. // bind f8
  14. // bind f9
  15. // bind f10
  16. // bind f11
  17. // bind f12
  18. // bind prntscrn
  19. // bind scrolllock
  20. // bind pause
  21. // bind numlock // "pause" registers as "numlock"
  22.  
  23. // Row 2 Binds
  24.  
  25. bind ` toggleconsole // Important
  26. // bind 1
  27. // bind 2
  28. // bind 3
  29. // bind 4
  30. // bind 5
  31. // bind 6
  32. // bind 7
  33. // bind 8
  34. // bind 9
  35. // bind 0
  36. // bind -
  37. // bind =
  38. // bind backspace
  39.  
  40. // Row 3 Binds
  41.  
  42. // bind tab
  43. // bind q
  44. // bind w
  45. // bind e
  46. // bind r
  47. // bind t
  48. // bind y
  49. // bind u
  50. // bind i
  51. // bind o
  52. // bind p
  53. // bind [
  54. // bind ]
  55. // bind \
  56.  
  57. // Row 4 Binds
  58.  
  59. // bind capslock
  60. // bind a
  61. // bind s
  62. // bind d
  63. // bind f
  64. // bind g
  65. // bind h
  66. // bind j
  67. // bind k
  68. // bind l
  69. // bind semicolon
  70. // bind '
  71. // bind enter
  72.  
  73. // Row 5 Binds
  74.  
  75. // bind shift
  76. // bind z
  77. // bind x
  78. // bind c
  79. // bind v
  80. // bind b
  81. // bind n
  82. // bind m
  83. // bind ,
  84. // bind .
  85. // bind /
  86. // bind rshift
  87.  
  88. // Row 6 Binds
  89.  
  90. // bind ctrl
  91. // bind lwin
  92. // bind alt
  93. // bind space
  94. // bind ralt
  95. // bind rwin
  96. // bind app
  97. // bind rctrl
  98.  
  99. // Arrow Key Area Binds
  100.  
  101. // bind ins
  102. // bind home
  103. // bind pgup
  104. // bind del
  105. // bind end
  106. // bind pgdn
  107.  
  108. // bind uparrow
  109. // bind leftarrow
  110. // bind rightarrow
  111. // bind downarrow
  112.  
  113. // Numpad Binds
  114.  
  115. // bind numlock
  116. // bind kp_slash
  117. // bind kp_multiply
  118. // bind kp_minus
  119. // bind kp_home
  120. // bind kp_uparrow
  121. // bind kp_pgup
  122. // bind kp_add
  123. // bind kp_leftarrow
  124. // bind kp_5
  125. // bind kp_rightarrow
  126. // bind kp_end
  127. // bind kp_downarrow
  128. // bind kp_pgdn
  129. // bind kp_enter
  130. // bind kp_ins
  131. // bind kp_del
  132.  
  133. // bind mouse1
  134. // bind mouse2
  135. // bind mouse3
  136. // bind mouse4
  137. // bind mouse5
  138. // bind mwheelup
  139. // bind mwheeldown
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement