home *** CD-ROM | disk | FTP | other *** search
- {**** BLOCK.ROB - A standard building block for your robots ****}
-
- MYANGLE=RND(360) { Pick a random starting angle }
- REPEAT
- RADAR(MYANGLE) { Scan for objects }
- IF OBJECT=TANK THEN { Is there a tank? }
- TURRET MYANGLE { YEP, rotate the gun }
- FIRE DISTANCE { and BLAST }
- ELSE
- MYANGLE=MYANGLE+5 { Otherwise just increment the scan angle }
- ENDIF
- FOREVER { Do this forever. }
-