Next
Previous
Contents
In console mode amigoplus 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 amigoplus
successfully:
- To start the game, just execute the program:
./amigoplus
- 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.:
./amigoplus -s 13
will start amigoplus with a 13 x 13 size board, or e.g.:
./amigoplus -s 19
will start Amigoplus with a 19 x 19 size board. Other sizes are possible.
- Amigoplus will play black by default. To make Amigoplus play white:
./amigoplus -white
- The default handicap is 0 stones, but this can be changed using the
-handicap option, e.g.:
./amigoplus -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