home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
colobotdemo
/
colobotdemo10e.exe
/
script
/
titan4.txt
< prev
next >
Wrap
Text File
|
2001-06-10
|
1KB
|
44 lines
extern void object::ApporteTitanium4()
{
object chose; // Info sur objet
while ( true ) // RΘpΦte :
{
chose = radar(TitaniumOre); // Cherche minerai
goto(chose.position); // Va vers minerai
grab(); // Prend minerai
chose = radar(Converter); // Cherche convert.
goto(chose.position); // Va sur convert.
drop(); // Pose minerai
move(-2.5); // Recule 2.5m
do
{
wait(1); // Attend le cube
chose = radar(Titanium, 0, 45, 0, 5);
}
while ( chose == null );
goto(chose.position);
grab(); // Prend le cube
goto(space(position)); // Va o∙ dΘposer
drop(); // DΘpose titanium
// Pile α moitiΘ vide ?
if ( energyCell.energyLevel < 0.5 )
{
chose = radar(PowerCaptor);
if ( chose != null ) // Station trouvΘe ?
{
goto(chose.position); // Va recharger
while ( energyCell.energyLevel < 1 )
{
wait(1); // Attend pile pleine
}
}
}
}
}