Advertisement
ReverendV92

Obsidian Conflict

Oct 25th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.76 KB | None | 0 0
  1. unbindall
  2.  
  3. // Row 1 Binds
  4.  
  5. bind escape cancelselect
  6. bind f1 locate_players
  7. bind f2 callforattention
  8. bind f3 callformedic
  9. bind f4 oc_teamselection
  10. bind f5 inventory_store
  11. bind f6 cl_toggleitemmenu
  12. bind f7 cl_dropselecteditem
  13. bind f8 "jpeg;screenshot"
  14. bind f9 showmapbriefing
  15. bind f10 dropammo
  16. bind f11 transferpoints
  17. // bind f12
  18. // bind prntscrn
  19. // bind scrolllock
  20. // bind pause
  21. bind numlock pause // because the pause button on my keyboard registers as "numlock"
  22.  
  23. // Row 2 Binds
  24.  
  25. bind "`" toggleconsole
  26. bind 1 slot1
  27. bind 2 slot2
  28. bind 3 slot3
  29. bind 4 slot4
  30. bind 5 slot5
  31. bind 6 slot6
  32. // bind 7
  33. // bind 8
  34. // bind 9
  35. // bind 0
  36. // bind -
  37. // bind =
  38.  
  39. // Row 3 Binds
  40.  
  41. bind tab +showscores
  42. bind q lastinv
  43. bind w +forward
  44. bind e +use
  45. bind r +reload
  46. bind t "use weapon_healer"
  47. // bind t "use weapon_frag;wait 450;+attack;wait 15;-attack;wait 50;lastinv"
  48. bind y drop
  49. bind u "impulse 201"
  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 +moveleft
  61. bind s +back
  62. bind d +moveright
  63. bind f "impulse 100"
  64. bind g phys_swap
  65. bind h holsterweapon
  66. // bind j bug_swap
  67. // bind k
  68. bind l ch_createvehicle
  69. // bind semicolon
  70. // bind '
  71. // bind enter
  72.  
  73. // Row 5 Binds
  74.  
  75. bind shift +speed
  76. bind z toggle_zoom
  77. bind x +voicerecord
  78. bind c "impulse 50"
  79. bind v +mouse_menu
  80. bind b toggle_duck
  81. // bind n
  82. bind m overview_mode
  83. // bind ,
  84. // bind .
  85. // bind /
  86. // bind rshift
  87.  
  88. // Row 6 Binds
  89.  
  90. bind ctrl +duck
  91. bind alt +walk
  92. bind space +jump
  93. // bind ralt
  94. // bind rctrl
  95.  
  96. // Arrow Key Area Binds
  97.  
  98. // bind ins
  99. bind home messagemode
  100. // bind pgup
  101. // bind del
  102. bind end messagemode2
  103. // bind pgdn
  104.  
  105. // bind uparrow
  106. // bind leftarrow
  107. // bind rightarrow
  108. // bind downarrow
  109.  
  110. // Numpad Binds
  111.  
  112. // bind kp_slash
  113. // bind kp_multiply
  114. // bind kp_minus
  115. // bind kp_home
  116. // bind kp_uparrow
  117. // bind kp_pgup
  118. // bind kp_add
  119. // bind kp_leftarrow
  120. // bind kp_5
  121. // bind kp_rightarrow
  122. // bind kp_end
  123. // bind kp_downarrow
  124. // bind kp_pgdn
  125. // bind kp_enter
  126. // bind kp_ins
  127. // bind kp_del
  128.  
  129. bind mouse1 +attack
  130. bind mouse2 +attack2
  131. bind mouse3 ironsight_toggle
  132. // bind mouse4
  133. // bind mouse5
  134. bind mwheelup invprev
  135. bind mwheeldown invnext
  136.  
  137. // Mouse
  138.  
  139. sensitivity 3
  140. m_filter 1
  141. m_customaccel 3
  142.  
  143. // HUD
  144.  
  145. hud_fastswitch 2
  146. hud_quickinfo 1
  147. hud_draw_fixed_reticle 1
  148. hud_draw_active_reticle 1
  149.  
  150. // Debug settings
  151.  
  152. developer 1
  153.  
  154. fps_max 120
  155. cl_showfps 1
  156.  
  157. con_notifytime 0
  158. phys_penetration_error_time 0
  159.  
  160. // Game settings
  161.  
  162. commentary 0
  163. snd_async_fullyasync 1
  164.  
  165. hl2_episodic 1
  166.  
  167. // Game Quality
  168.  
  169. mat_hdr_level 2
  170. mat_specular 1
  171. mat_antialias 8
  172. mat_colorcorrection 0
  173.  
  174. // Flashlight
  175.  
  176. r_flashlightfov 90
  177. r_flashlight_r 0
  178. r_flashlight_g 255
  179. r_flashlight_b 0
  180.  
  181. // Multiplayer
  182.  
  183. mp_bunnyhop 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement