Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. ;; Format
  2. ;;
  3. ;; $Bind Name: name of default FS2 bind string required
  4. ;; $Key Default: key to set as default string optional
  5. ;; $Joy Default: joystick to set as default int optional
  6. ;; $Key Mod Shift: shift key needed logical optional
  7. ;; $Key Mod Alt: alt key needed logical optional
  8. ;; $Key Mod Ctrl: ctrl key needed logical optional
  9. ;; $Category: tab in which it appears string optional
  10. ;; $Has XStr: has entry in tstrings logical optional
  11. ;; $Type: continous or not string optional
  12. ;;
  13. ;;
  14. ;; Valid $Category: entires TARGET_TAB, SHIP_TAB, WEAPON_TAB, COMPUTER_TAB
  15. ;; Valid $Type: entries CC_TYPE_TRIGGER, CC_TYPE_CONTINUOUS
  16. ;;
  17. ;; Example - changes Clear Escort List from Alt-Shift-E to Alt-Shift-Q
  18. ;;
  19. ;; $Bind Name: Clear Escort List
  20. ;; $Key Default: KEY_Q
  21. ;; $Key Mod Shift: 1
  22. ;; $Key Mod Alt: 1
  23. ;;
  24.  
  25.  
  26. #ControlConfigOverride
  27.  
  28. ;; we don't need shield keys so move them to shif-arrow
  29. $Bind Name: Augment Forward Shield
  30. $Key Mod Shift: 1
  31. $Bind Name: Augment Rear Shield
  32. $Key Mod Shift: 1
  33. $Bind Name: Augment Left Shield
  34. $Key Mod Shift: 1
  35. $Bind Name: Augment Right Shield
  36. $Key Mod Shift: 1
  37.  
  38. ;; move thrusters to arrow keys
  39. $Bind Name: Forward Thrust
  40. $Key Default: KEY_UP
  41. $Bind Name: Reverse Thrust
  42. $Key Default: KEY_DOWN
  43. $Bind Name: Left Thrust
  44. $Key Default: KEY_LEFT
  45. $Bind Name: Right Thrust
  46. $Key Default: KEY_RIGHT
  47.  
  48.  
  49. #End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement