home *** CD-ROM | disk | FTP | other *** search
/ 300 Favorite Games / 300GAMES.iso / 204 / rammer.prg < prev    next >
Text File  |  1995-08-14  |  662b  |  26 lines

  1. #############################################################################
  2. #                                 RAMMER                                    #
  3. #                                                                           #
  4. # Simple robot that can be a large pain in the but, literally!              #
  5. #                                                                           #
  6. #############################################################################
  7.  
  8. Init
  9. {
  10.     Name( "Rammer" )
  11.     RegCore( RamSearch )
  12.     RegDtcRobot( RamRobot, 1 )
  13. }
  14.  
  15. RamSearch
  16. {
  17.     Scan()
  18.     RadarRight( -5 )
  19. }  
  20.  
  21. RamRobot
  22. {
  23.     SyncAll()
  24.     Ahead( ScanDist + 5 )
  25. }
  26.