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

  1. extern void object::Recharge2()
  2. {
  3.     point  start;          // variable for initial pos.
  4.     object item;           // info. about power station
  5.     
  6.     start = position;      // store initial position
  7.     
  8.     item = radar(PowerStation); // look for station
  9.     goto(item.position);   // go to the power station
  10.     
  11.     while ( energyCell.energyLevel < 1 )
  12.     {
  13.         wait(1);            // wait until recharged
  14.     }
  15.     
  16.     goto(start);           // go back to initial pos.
  17.     message("Recharge completed");
  18. }
  19.