Advertisement
TheGamingNachos

default.cfg

Sep 7th, 2015
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. echo "default binds loaded."
  2.  
  3.  
  4. // Misc.
  5. developer 0
  6. sensitivity 2.7128
  7. r_drawviewmodel 1
  8.  
  9.  
  10. bind "mouse1" "+attack; spec_next"
  11. bind "mouse2" "+attack2; spec_prev"
  12. bind "e" "voicemenu 0 0"
  13. bind "h" "+taunt"
  14. bind "g" "+use_action_slot_item"
  15. bind "`" "toggleconsole"
  16. bind "=" "player_ready_toggle"
  17. bind "v" "+voicerecord"
  18. bind "u" "say"
  19. bind "y" "say_team"
  20. bind "t" "explode"
  21. bind "m" "open_charinfo_direct"
  22. bind "n" "open_charinfo_backpack"
  23. bind "q" "slot4"
  24.  
  25.  
  26. // Crouch Jump Script:
  27. bind "SPACE" "+jumpeh"
  28. alias "+jumpeh" "+jump; +duck; +moveup"
  29. alias "-jumpeh" "-duck; -jump; -moveup"
  30.  
  31.  
  32. // Crouch Script:
  33. bind "CTRL" "+dk"
  34. bind "SHIFT" "+dk"
  35. alias +dk "+duck;+movedown"
  36. alias -dk "-duck;-movedown"
  37.  
  38.  
  39. // Inspect:
  40. bind "i" "+insp"
  41. alias toggleon "bind i +insp"
  42. alias toggleoff "bind i +nomodel"
  43. alias +insp "r_drawviewmodel 1; +inspect"
  44. alias -insp "-inspect; toggleoff"
  45.  
  46.  
  47. // Null-cancelling Movement Script:
  48. // (Prevents you from pressing two opposing directions, which causes you to stop moving)
  49.  
  50. bind w +mfwd
  51. bind s +mback
  52. bind a +mleft
  53. bind d +mright
  54.  
  55. alias +mfwd "-back; +forward; alias checkfwd +forward; mat_filterlightmaps 0"
  56. alias +mback "-forward; +back; alias checkback +back; mat_filterlightmaps 0"
  57. alias +mleft "-moveright; +moveleft; alias checkleft +moveleft; mat_filterlightmaps 0"
  58. alias +mright "-moveleft; +moveright; alias checkright +moveright; mat_filterlightmaps 0"
  59. alias -mfwd "-forward; checkback; alias checkfwd none; mat_filterlightmaps 0"
  60. alias -mback "-back;checkfwd; alias checkback none; mat_filterlightmaps 0"
  61. alias -mleft "-moveleft; checkright; alias checkleft none; mat_filterlightmaps 0"
  62. alias -mright "-moveright; checkleft; alias checkright none; mat_filterlightmaps 0"
  63. alias checkfwd none
  64. alias checkback none
  65. alias checkleft none
  66. alias checkright none
  67. alias none ""
  68.  
  69.  
  70. // LOD Tweak:
  71. mat_filterlightmaps 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement