/usr/share/games/colobot/ai/human02.txt is in colobot-common 0.1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | extern void object::Activity( )
{
errmode(0); // ne stoppe pas si erreur
while ( true )
{
turn(-144);
move(2);
turn(-90);
wait(5+rand()*8);
turn(-90);
move(2);
turn(-36);
wait(2+rand()*5);
}
}
|