Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.67 KB | None | 0 0
  1. #
  2. # This script defines the input configuration
  3. #
  4.  
  5. bind escape     exit
  6. bind w          forward
  7. bind up         forward
  8. bind a          strafe-left
  9. bind left       turn-left
  10. bind s          backward
  11. bind down       backward
  12. bind d          strafe-right
  13. bind right      turn-right
  14. bind space      toggle-perspective
  15. bind f          toggle-flashlight
  16.  
  17. axis mouse-x    turn
  18. axis mouse-y    look
  19.  
  20. # xbox360 controller configuration using xboxdrv
  21. axis joy-axis0  joy-strafe
  22. axis joy-axis1  joy-move
  23. axis joy-axis2  joy-turn
  24. axis joy-axis3  joy-look
  25. bind joy-button4 toggle-flashlight
  26. bind joy-button5 toggle-perspective
  27.  
  28. set turnspeed   1.0
  29.  
  30. sys-raw-input   1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement