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

  1. extern void object::Solution( )
  2. {
  3.     for ( int y=0 ; y<6 ; y=y+1 )
  4.     {
  5.         for ( int x=0 ; x<5 ; x=x+1 )
  6.         {
  7.             sniff();
  8.             move(5);
  9.         }
  10.         sniff();
  11.  
  12.         if ( y%2 == 0 )
  13.         {
  14.             turn(90);
  15.             move(5);
  16.             turn(90);
  17.         }
  18.         else
  19.         {
  20.             turn(-90);
  21.             move(5);
  22.             turn(-90);
  23.         }
  24.     }
  25. }
  26.