home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / fly8112o.zip / fcs.max < prev    next >
Text File  |  1997-05-20  |  860b  |  32 lines

  1. # fcs.max
  2. #
  3. # This is part of the flight simulator 'fly8'.
  4. # Author: Eyal Lebedinsky (eyal@eyal.emu.id.au).
  5.  
  6. # Example of button usage. Let us define the trigger (button 0) as the
  7. # 'fire' function:
  8.  
  9. Def Btn 0    F1
  10.  
  11. # we should use the 'd=0' in the stick options so that this button
  12. # will produce a repeating action, so you don't have to press/release
  13. # for each shot. Now let us define the second button as the radar lock
  14. # release:
  15.  
  16. Def Btn 1    Sp
  17.  
  18. # If we have 4 buttons on the main stick then we can use them, like this:
  19.  
  20. Def Btn 2    w        # toggle weapon
  21. Def Btn 3    f        # toggle radar acquisition mode
  22.  
  23.  
  24. # use the hat for power management, since we do not have a throttle on
  25. # this stick.
  26.  
  27. Def Btn 4    9        # up    power up
  28. Def Btn 5    .        # right    100%, then AB power
  29. Def Btn 6    3        # down    power down
  30. Def Btn 7    0 +        # left    idle power
  31. Def Brl 7    +
  32.