home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
300 Favorite Games
/
300GAMES.iso
/
204
/
shell.prg
< prev
next >
Wrap
Text File
|
1995-08-14
|
897b
|
45 lines
#############################################################################
# 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
{
}