home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 098.MACRO.DAT < prev    next >
Text File  |  1991-04-26  |  1KB  |  59 lines

  1. 'MACRO.DAT
  2. '=========
  3. INPUT,  see03.sc1
  4. OUTPUT, test.sc1
  5. DIR
  6.  
  7. 'Here are 2 possible uses for macros:
  8.  
  9. 'I) when a group of enhancements are stable and will no
  10. 'longer be actively developed (at least for the time being)
  11. 'we can set them up as a macro so they will be included but
  12. 'we don't have them cluttering up the current command list:
  13.  
  14. 'say, we have written a macro file called RADIO.MAC which contains
  15. 'all the ATIS and COM and VOR and NDB information.
  16.  
  17. 'We can execute it all just by saying:
  18.  
  19. MACRO, RADIO
  20.  
  21. '(This is also handy for lists of navaids that will be used
  22. 'on multiple (neighboring) scenery files).
  23.  
  24. 'We can also use a DAT file as a macro in the same way (in 
  25. 'fact - we can even use the EZC.DAT file if we want!):
  26.  
  27. MACRO, EZC.DAT
  28.  
  29. 'II)  if we have a collection of library elements in a particular
  30. 'pattern (like spirals of balloons or lines of towers or masts)
  31. 'and would like to treat them as a single element:
  32.  
  33. 'we have designed a string of christmas trees using no absolute
  34. 'coordinates:  with MACRO we can place them anywhere at any angle
  35. '(for example; just south of the condos)
  36.  
  37. NORTH, 18389
  38. EAST, 18411
  39.  
  40. 'at a 135 degree heading
  41.  
  42. HEADING, 135
  43.  
  44. MACRO, XMAS
  45.  
  46. MACRO, LIBRARY.DAT
  47.  
  48. SAVE
  49. END
  50.  
  51. Discussion:
  52. ===========
  53. Macros must end in END.
  54.  
  55. Commands pertaining to directory and file set-up and the
  56. SAVE and MACRO command *within a macro* will be ignored
  57.  
  58.  
  59.