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

  1. symbols
  2. message        startup
  3. message        timer
  4. message        arrived
  5.  
  6. template       phrikT
  7. thing          createghost
  8. end
  9.  
  10. code
  11. startup:
  12.      settimer(10*rand());
  13.      return;
  14.      
  15. timer:
  16.      zing=creatething(phrikT, createghost);
  17.      capturething(zing);
  18.      movetoframe(zing, 1, 5);
  19.      return;
  20.      
  21. arrived:
  22.      destroything(zing);
  23.      sleep(2*rand());
  24.      call timer;
  25.      return;
  26.     
  27. end
  28.  
  29.  
  30.  
  31.  
  32.