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