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

  1. extern void object::Solution( )
  2. {
  3.     point  start;
  4.     start = position;  // mΘmorise dΘpart
  5.  
  6.     motor(1, 1);  // dΘpart α donf !
  7.  
  8.     while ( true )  // boucle infinie
  9.     {
  10.         float len = distance(position, start);
  11.         if ( len > 25-2 )
  12.         {
  13.             motor( (25-len)/2, (25-len)/2 );
  14.         }
  15.     }
  16. }
  17.