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

  1. extern void object::Evite( )
  2. {
  3.     while ( true )
  4.     {
  5.         float    front, left, right;
  6.  
  7.         front = radar(Mine,   0, 30, 0, 20);
  8.         left  = radar(Mine,  30, 60, 0, 20);
  9.         right = radar(Mine, -30, 60, 0, 20);
  10.  
  11.         motor(1-right, 1-left+front);
  12.     }
  13. }
  14.