home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 52 / ClassicFond52.iso / GAMES / DROIDW.RAR / DWCD.GOB / mission_cog_t1_camhelp.cog < prev    next >
Encoding:
Text File  |  1998-11-04  |  1.5 KB  |  57 lines

  1. symbols
  2. message        startup
  3. message        entered
  4. message        crossed
  5.  
  6. sector         sector1        linkid=1
  7. sector         sector2        linkid=2
  8. sector         sector5        linkid=5
  9. sector         sector6       linkid=6
  10. sector         sector7       linkid=7
  11.  
  12. end
  13.  
  14. # ========================================================================================
  15.  
  16. code
  17. startup:
  18.      ca1=0;
  19.      ca2=0;
  20.      ca5=0;
  21.      ca6=0;
  22.      ca7=0;
  23.      return;
  24.      
  25. entered:
  26.  //    if ( (getsenderid()==1)&&(ca1==0) ) {
  27.  //         print("playing line 1");
  28.  //         ca1=1;         
  29.  //         if (getdifficulty()==0) dwPlayCammySpeech(16001, "T1ca001.wav", 15, 2);      
  30.  //    }   
  31.      if ( (getsenderid()==2)&&(ca2==0) ) {
  32.           print("playing line 2");
  33.           ca2=1;         
  34.           if (getdifficulty()!=2) dwPlayCammySpeech(16002, "T1ca002.wav", 15, 2);      
  35.           else dwPlayCammySpeech(16012, "T1ca012.wav", 15, 2);   
  36.      }            
  37.      if ( (getsenderid()==5)&&(ca5==0) ) {
  38.           print("playing line 5");
  39.           ca5=1;         
  40.           dwPlayCammySpeech(16005, "T1ca005.wav", 15, 2);      
  41.      } 
  42.      if ( (getsenderid()==6)&&(ca6==0) ) {
  43.           print("playing line 6");
  44.           ca6=1;         
  45.           dwPlayCammySpeech(16006, "T1ca006.wav", 15, 2);      
  46.      } 
  47.      if ( (getsenderid()==7)&&(ca7==0) ) {
  48.           print("playing line 7");
  49.           ca7=1;         
  50.           dwPlayCammySpeech(16007, "T1ca007.wav", 15, 2);      
  51.      }   
  52.      return;
  53.  
  54.  
  55. end
  56.  
  57.