home *** CD-ROM | disk | FTP | other *** search
- # Droids COG Script
- #
- # 03_eau.cog
- #
- # Cog designed to generate air bubbles in ctrl rm for moisture farm
- #
- #
- # Desc:
- # 04/08/98 [JP] Created
- #
- # ========================================================================================
-
- symbols
- message startup
- message pulse
-
- thing spout1
- thing spout2
- thing spout3
- thing spout4
- thing spout5
- thing spout6
-
-
- template large_part
- template fine_part
-
-
- int rock=0
- int l_color=0
- int move=10
- flex l_size=0
- flex l_speed=0.1 local
- end
-
- code
- startup:
- //setpulse(0.2);
- return;
-
- pulse:
- creatething(fine_part, spout1);
- creatething(fine_part, spout2);
- creatething(fine_part, spout3);
- creatething(fine_part, spout4);
- creatething(fine_part, spout5);
- creatething(fine_part, spout6);
- return;
-
- end
-
-
-
-
-
-