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

  1. extern void object::Recharge1()
  2. {
  3.     point  start;          // variable for initial pos.
  4.     object item;           // info. about power station
  5.     
  6.     start = position;      // stores initial position
  7.     
  8.     item = radar(PowerStation); // looks for station
  9.     goto(item.position);   // goes to the power station
  10.     wait(5);               // waits 5 seconds
  11.     
  12.     goto(start);           // comes back to initial pos.
  13. }
  14.