Instructions
To play: click on a cell to make a move.
Available Parameters
It's possible to pass some parameters to control the gameplay. Parameters are passed in the URL, separated by the & character.
| Parameter Name |
Description |
Possible Values |
| size |
The size of the game - number of cells. |
Even number between 6 and 28 |
| p1,p2 |
Specify bots (AI) players for either player 1 or 2 respectively |
- simple: a simple AI (picks the cell with the most stones)
- random: a simple AI (picks a random cell)
- capturegreedy: attemps to play the cell that will capture the most stones
- minmax-func-strength: a Minimax implementation with a given strength (search depth, 1 to 10) and evaluation function (only count_diff at the moment)
|