home *** CD-ROM | disk | FTP | other *** search
- #############################################################################
- # SHELL #
- # #
- # This robot does absolutely nothing. It is meant to be a starting point #
- # for creating your own robots. The sections below are used by most robots. #
- # Add code and change names as needed to make your own robot! #
- # #
- #############################################################################
-
-
- Init
- {
- Name( "Shell" )
-
- RegCore( Core )
- RegCldMissile( MissileHit, 1 )
- RegDtcRobot( FoundRobot, 2 )
- RegAScan( AutoScan, 3 )
- }
-
- AutoScan
- {
- Scan()
- }
-
- Core
- {
-
- }
-
- MissileHit
- {
-
- }
-
- FoundRobot
- {
- Fire(1)
- Scan()
- }
-
- Dead
- {
-
- }