home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
colobotdemo
/
colobotdemo10e.exe
/
script
/
tchasse1.txt
< prev
next >
Wrap
Text File
|
2001-06-10
|
543b
|
33 lines
extern void object::Solution( )
{
aim(-3);
while ( true )
{
object target;
float a, b;
target = radar(TargetBot);
if ( target == null ) break;
a = direction(target.position);
turn(a);
target = radar(TargetBot);
if ( target == null ) break;
b = direction(target.position);
if ( a == b ) // immobile ?
{
wait(0.2);
target = radar(TargetBot);
if ( target == null ) break;
a = direction(target.position);
if ( a == b )
{
fire(2);
wait(2);
}
}
}
}