home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / colobotdemo / colobotdemo10e.exe / script / tevite.txt < prev    next >
Text File  |  2001-06-10  |  306b  |  20 lines

  1. extern void object::Solution( )
  2. {
  3.     while ( true )
  4.     {
  5.         float    left, right;
  6.  
  7.         left  = radar(WayPoint,  45, 120, 0, 20);
  8.         right = radar(WayPoint, -45, 120, 0, 20);
  9.  
  10.         if ( left == 0 && right == 0 )  // rien ?
  11.         {
  12.             turn(180);  // demi-tour
  13.         }
  14.         else
  15.         {
  16.             motor(left, right);
  17.         }
  18.     }
  19. }
  20.