home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2001 November
/
Gamestar_34_2001-11_cd1.bin
/
DEMA
/
colobotdemoe.exe
/
script
/
titan1.txt
< prev
next >
Wrap
Text File
|
2001-07-27
|
558b
|
17 lines
extern void object::CollectTitanium1()
{
// 1) Variable definition.
object item; // info. about objects
// 2) Go to the titanium ore and grab it.
item = radar(TitaniumOre);// look for titanium ore
goto(item.position); // go to the position
grab(); // grab the titanium
// 3) Go to the converter and drop it.
item = radar(Converter); // look for converter
goto(item.position); // go to the position
drop(); // drop the titanium
move(-2.5); // step back 2.5 m
}