How exactly does this method work? I'm am using it in the Greeps competition. So I am trying to causes the greeps to follow the purple paint trail. Currently I have this:
public void tomatoTrail()
{
if(seePaint("purple"))
{
turnTowards(getX(),getY());
for(int i = 0; i <= 10; i++)
{
move();
}
}
}
