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

  1. extern void object::Solution( )
  2. {
  3.     object  item;
  4.     point   dest;
  5.  
  6.     item = radar(Titanium);
  7.     if ( item == null )  return;
  8.     goto(item.position);
  9.  
  10.     grab();  // grab the titanium cube
  11.  
  12.     dest.x = 10;
  13.     dest.y = -60;
  14.     goto(dest);  // go to the plateform
  15.  
  16.     drop();  // drop the titanium cube
  17. }
  18.