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

  1. extern void object::Solution()
  2. {
  3.     object    item;
  4.     
  5.     jet(0.2);
  6.     while(position.z < 20)
  7.     {
  8.         wait(0.2);
  9.     }
  10.     jet(0);
  11.     
  12.     while(true)
  13.     {
  14.         item = radar(AlienAnt);
  15.         turn(direction(item.position));
  16.         fire(1);
  17.     }
  18. }
  19.