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

  1. symbols
  2. message        startup
  3. message        entered
  4.  
  5. sector         sector1        linkid=1
  6. sector         sector2        linkid=2
  7.      
  8. end
  9.  
  10. # ========================================================================================
  11.  
  12. code
  13. startup:
  14.      ca1=0;
  15.      ca2=0;
  16.      return;
  17.      
  18. entered:
  19.      if ( (getsenderid()==1)&&(ca1==0) ) {
  20.           ca1=1;
  21.           dwsetreftopic("Laser.tpc");
  22.      }
  23.      if ( (getsenderid()==2)&&(ca2==0) ) {
  24.           ca2=1;
  25.           dwsetreftopic("Trajectory.tpc");
  26.      }     
  27.      return;
  28.  
  29.  
  30. end
  31.  
  32.