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

  1. extern void object::SwitchCell1()
  2. {
  3.     grab(InFront);     // take the new cell in front
  4.     drop(Behind);      // and drop it behind
  5.     
  6.     grab(EnergyCell);  // take the cell from the bot
  7.     drop(InFront);     // and drop it in front
  8.     
  9.     grab(Behind);      // take the new cell
  10.     drop(EnergyCell);  // and drop it on the bot
  11. }
  12.