home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 52 / ClassicFond52.iso / GAMES / DROIDW.RAR / DWCD.GOB / mission_cog_b0_strut.cog < prev    next >
Text File  |  1998-11-04  |  637b  |  46 lines

  1. #
  2. # Droids Cog Script
  3. #
  4. # b0_strut.cog
  5. #
  6. # Creates a beam between two objects. 
  7. #
  8. # Desc: 
  9. # 12/22/97    [DGS]    Created (Happy Birthday Mom!) 
  10. #
  11. # --------------------------------------------------------------------------------
  12.  
  13.  
  14. symbols
  15.         message        startup
  16.     
  17.     thing        beam0a
  18.     thing        beam0b
  19.     thing        beam1a
  20.     thing        beam1b
  21.  
  22.     int        l_color=0    
  23.     float        l_size=0.01            
  24. end
  25.  
  26. ## Code Section
  27. code
  28.  
  29. startup:
  30.  
  31.  
  32.     if (beam0a != 0)        //Link One Beam
  33.         {
  34.                 addbeam(beam0a,beam0b,147,l_size);
  35.         }
  36.     
  37.     if (beam1a != 0)        //Link Two Beam
  38.         {
  39.         addbeam(beam1a,beam1b,147,l_size);
  40.         }
  41.     return;
  42.  
  43.  
  44. end
  45.  
  46.