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

  1. extern void object::Solution()
  2. {
  3.     
  4.     object    item;
  5.     
  6.     aim(-20);
  7.     
  8.     jet(0.2);
  9.     while (position.z < 10)
  10.     {
  11.         wait(0.2);
  12.     }
  13.     
  14.     while (true)
  15.     {
  16.         
  17.         while (radar(AlienAnt, 0, 360, 0, 20) == null)
  18.         {
  19.             item = radar(AlienAnt);
  20.             turn(direction(item.position));
  21.             motor(1,1);
  22.             wait(0.2);
  23.         }
  24.         
  25.         fire(1);
  26.     }
  27.     
  28. }
  29.