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

  1. # Droids COG Script
  2. #
  3. # 03_eau.cog
  4. #
  5. # Cog designed to generate air bubbles in ctrl rm for moisture farm
  6. #
  7. #
  8. # Desc:
  9. #     04/08/98 [JP]    Created
  10. # ========================================================================================
  11.  
  12. symbols
  13. message        startup
  14. message        pulse
  15.  
  16. thing        spout1
  17. thing         spout2
  18. thing        spout3
  19. thing        spout4
  20. thing         spout5
  21. thing        spout6
  22.  
  23.  
  24. template    large_part
  25. template    fine_part
  26.  
  27.  
  28. int        rock=0
  29. int        l_color=0
  30. int        move=10
  31. flex        l_size=0
  32. flex        l_speed=0.1     local      
  33. end
  34.  
  35. code
  36. startup:
  37.     //setpulse(0.2);
  38.     return;
  39.     
  40. pulse:
  41.     creatething(fine_part, spout1);
  42.      creatething(fine_part, spout2);
  43.     creatething(fine_part, spout3);
  44.      creatething(fine_part, spout4);
  45.      creatething(fine_part, spout5);
  46.      creatething(fine_part, spout6);
  47.     return;
  48.  
  49. end
  50.  
  51.  
  52.  
  53.  
  54.  
  55.