home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / colobotdemo / colobotdemo10e.exe / help / mlcrys1.txt < prev    next >
Text File  |  2001-06-25  |  2KB  |  30 lines

  1. \b;Programs dispatched by Houston
  2. Below is one of the programs that has been developed by our engineers.
  3. It instructs a \l;grabber\u object\botgr; to retrieve the nearest chunk of \l;titanium ore\u object\titanore; and place it on the \l;converter\u object\convert;.
  4.  
  5. In order to execute this program, select the program \c;CollectTitanium1\n; in the list of the programs available on the bot (on the lower left-hand corner of your screen), and click on the arrow symbol \button 21;. At any moment you can stop the program and take over at the controls with the stop button \button 8;.
  6. \c;
  7. \s;extern void object::CollectTitanium1()
  8. \s;{
  9. \s;    // 1) Variable definition.
  10. \s;    \l;object\u cbot\type;  item;            // info. about objects
  11. \s;    
  12. \s;    // 2) Goes toward the titanium ore and grabs it.
  13. \s;    item = \l;radar\u cbot\radar;(\l;TitaniumOre\u cbot\category;);// looks for titanium ore
  14. \s;    \l;goto\u cbot\goto;(item.position);     // goes to the position
  15. \s;    \l;grab\u cbot\grab;();                  // grabs the titanium
  16. \s;    
  17. \s;    // 3) Goes toward the converter and drops it.
  18. \s;    item = \l;radar\u cbot\radar;(\l;Converter\u cbot\category;); // looks for converter
  19. \s;    \l;goto\u cbot\goto;(item.position);     // goes to the position
  20. \s;    \l;drop\u cbot\drop;();                  // drops the titanium
  21. \s;    \l;move\u cbot\move;(-2.5);              // steps back 2.5 m
  22. \s;}
  23. \n;
  24. \b;Archives
  25. Index of the programs dispatched in former missions:
  26.  
  27. o  \c;\l;Recharge2\u mltropi3;\n;
  28. o  \c;\l;Recharge1\u mllune4;\n;
  29. o  \c;\l;SwitchCell1\u mllune1;\n;
  30.