Advertisement
Wazanator

config_default.cfg

Jul 29th, 2019
1,138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. // YWB 10/10/03:
  2. // If the user doesn't have a config.cfg when they run, this gets executed the first time they run the engine
  3. // It doesn't execute if they have their own config.cfg saved out.
  4. unbindall
  5.  
  6. bind "ESCAPE" "cancelselect"
  7. bind "`" "toggleconsole"
  8. bind "w" "+forward"
  9. bind "s" "+back"
  10. bind "a" "+moveleft"
  11. bind "d" "+moveright"
  12. bind "SPACE" "+jump"
  13. bind "CTRL" "+duck"
  14. bind "e" "+use"
  15. bind "c" "impulse 50"
  16. bind "r" "+reload"
  17. bind "ALT" "+walk"
  18. bind "SHIFT" "+speed"
  19. bind "MOUSE1" "+attack"
  20. bind "MOUSE2" "+attack2"
  21. bind "f" "impulse 100"
  22. bind "1" "slot1"
  23. bind "2" "slot2"
  24. bind "3" "slot3"
  25. bind "4" "slot4"
  26. bind "5" "slot5"
  27. bind "6" "slot6"
  28. bind "7" "slot7"
  29. bind "MWHEELUP" "invprev"
  30. bind "MWHEELDOWN" "invnext"
  31. bind "q" "lastinv"
  32. bind "F5" "jpeg"
  33. bind "F6" "save quick"
  34. bind "F9" "load quick"
  35. bind "z" "+zoom"
  36. bind "g" "phys_swap"
  37.  
  38. //bind both keys to pause command for legacy support
  39. bind "PAUSE" "pause"
  40. bind "NUMLOCK" "pause"
  41.  
  42. //bugbait switch
  43. bind "x" "bug_swap"
  44.  
  45. // on Mac don't cause CTRL to be bound as it doesn't play well with mouse wheel
  46. // move duck and walk across one key as we had the command key to play with
  47. bind_mac "ALT" "+duck"
  48. bind_mac "LWIN" "+walk"
  49. unbind_mac "CTRL"
  50. // F9 is Expose by default so move it to F8 on Mac
  51. bind_mac "F8" "load quick"
  52. unbind_mac "F9"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement