Please, use the new Blupi.org website for downloading freely all games.
Home CeeBot Blupi BuzzingCars CoLoBoT
English
Français
Deutsch
 
 
 
 
 
Loop Back
extern void object::Loop( )
{
  repeat ( 6 )  // repeat 6x
  {
    move(5);    // move forwards 5 meters
    turn(90);   // quarter turn left
    fire(1);    // shoot target
    turn(-90);  // quarter turn right
  }
}