home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2001 November / Gamestar_34_2001-11_cd1.bin / DEMA / colobotdemoe.exe / script / tlaby1.txt < prev    next >
Text File  |  2001-07-23  |  383b  |  27 lines

  1. extern void object::Solution( )
  2. {
  3.     object    front, left, right;
  4.  
  5.     front = radar(Barrier,   0, 45, 0, 5);
  6.     left  = radar(Barrier,  90, 45, 0, 5);
  7.     right = radar(Barrier, -90, 45, 0, 5);
  8.  
  9.     if ( front == null )
  10.     {
  11.         move(5);
  12.         return;
  13.     }
  14.     if ( left == null )
  15.     {
  16.         turn(90);
  17.         move(5);
  18.         return;
  19.     }
  20.     if ( right == null )
  21.     {
  22.         turn(-90);
  23.         move(5);
  24.         return;
  25.     }
  26. }
  27.