  New Macro files by Tom Trude

Macros are common files that contain Class Bicho type code.  They make the mission file (.MIS) smaller by storing most of the code elsewhere.  It has variables which may be define in the mission file.  The .MAC file must be stored in the same folder as the .MIS file it is needed for.  Below are examples of the code used to call the macro into the mission.


___________________________________

      BARMAD_T.MAC -- six man rowboat
___________________________________

    [ 
      .CLASS MACRO
      .TOKEN ROWBOAT
      .MACRO BARMAD_T
      .XYZ [ 2470 2905 -20 ]
      .Angulo 0
      .VolumenAgua AGUA
      .ColorBurbujas [ 0 70 63 ]
      .bando NEUTRAL
    ]
___________________________________

___________________________________

 ZODIAC2_T.MAC -- six man motorboat raft
___________________________________

    [ 
      .CLASS MACRO
      .TOKEN BALSA
      .MACRO ZODIAC2_T
      .XYZ [ 1440 388 0 ]
      .Angulo 90
      .VolumenAgua BASE
      .ColorBurbujas [ 0 63 63 ]
      .Bando NEUTRAL
    ]
___________________________________

___________________________________

TREN_T.MAC -- useable train engine w/ turret
___________________________________

    [ 
      .CLASS MACRO
      .TOKEN TRAIN_ENGINE
      .MACRO TREN_T
      .Grafico TREN2
      .XYZ [ 740 1918 0 ]
      .RAIL [  [ 357 2305 0 ] [ 731 1924 0 ] ]
      .AnimTorr T-TANQTA
    ]
__________________________________

