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

  1. # chpro.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 view control, like:
  25.  
  26. Def Btn 4    Up Up Up Up Up
  27. Def Brl 4    *
  28. Def Btn 5    Right Right Right Right Right
  29. Def Brl 5    *
  30. Def Btn 6    Down Down Down Down Down
  31. Def Brl 6    *
  32. Def Btn 7    Left Left Left Left Left
  33. Def Brl 7    *
  34.  
  35.