OK, here is AtaxxMoron, you better be able to beat this!

Look fish to see the AtaxxPaul fromp AtaxxMoron!


You need a fish java browser, like netscape 2.0!


Here is the code for AtaxxMoron... All it does is take the first legal move.

class AtaxxMoron implements AtaxxPlayer
{
    public Move makeMove(AtaxxBoard b, int id) {
        Move m = new Move(id);
        if(!b.advanceLegalMove(m))
            System.out.println("Uh.. AtaxxMoron asked to make move, no poss."); 

        return(m);
    }
}


Back!