Next
Previous
Contents
In console mode wallyplus will direct its output to stdout and get its input from stdin.
Error messages will be directed to stderr.
Assuming you know the basic rules of Go and have compiled wallyplus successfully:
- To start the game, just execute the program:
./wallyplus
- This will start the game with the default board size, which is 9 x 9.
If you want another size, just specify it on the command-line, e.g.:
./wallyplus -s 13
will start wallyplus with a 13 x 13 size board, or e.g.:
./wallyplus -s 19
will start wallyplus with a 19 x 19 size board. Other sizes are possible.
- Wallyplus will play black by default. To make wallyplus play white:
./wallyplus -white
- The default handicap is 0 stones, but this can be changed using the
-handicap option, e.g.:
./wallyplus -s 13 -handicap 9
- A different handicap can be specified, up to a maximum of 4
stones on a 9 x 9 board, and 9 stones on the 13 and 19 sized boards.
Next
Previous
Contents