home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
colobotdemo
/
colobotdemo10e.exe
/
script
/
tsniff.txt
< prev
next >
Wrap
Text File
|
2001-06-10
|
293b
|
26 lines
extern void object::Solution( )
{
for ( int y=0 ; y<6 ; y=y+1 )
{
for ( int x=0 ; x<5 ; x=x+1 )
{
sniff();
move(5);
}
sniff();
if ( y%2 == 0 )
{
turn(90);
move(5);
turn(90);
}
else
{
turn(-90);
move(5);
turn(-90);
}
}
}