Little Problem...
Posted: Tue Mar 24, 2009 7:03 am
Hey Folks,
I've got a little Problem with my Bot, for it ignores my instructions...
Could you just please check if the following line are OK?
I#M switching $my_direction multiple times and have some elementrs fo the wall avoider included, so I guess that something in the above lines is not right...
I've got a little Problem with my Bot, for it ignores my instructions...
Could you just please check if the following line are OK?
Code: Select all
class AristoWorm
{
public static int[][]$offsets ={{1,0},{0,-1},{-1,0},{0,1}};
public int think(int $dx, int $dy, int[][]$board, int $x, int $y, int $dir, int[][]$enemies)
{
Code: Select all
int $my_direction = $dir;
Code: Select all
return $my_direction;
}
}