These are all of the files required to play Tic Tac Toe using EveryGame (available from the App Store for the Apple iPad and iPhone). Simply unzip the archive and copy the individual files onto your iPad to play, or edit them first to create your own modified version.
Cyberboard Version.
You will Need the [url=http://cyberboard.brainiac.com/cyberboardv310.exe]Cyberboard[/url] program to run the files.
[b]See my [url=http://www.boardgamegeek.com/geeklist/18537/my-cyberboard-conversions]Geeklist Here[/url] for all my other Cyberboard Conversions.[/b]
Don't forget to Thumb!
This is a Tic-Tac-Toe AI for mostly experimental purposes. It was developed to support the discussion on this thread: http://www.boardgamegeek.com/article/2378652#2378652. A few varieties are included. Some do not play perfectly.
How to play:
It has minimal UI, so if you don't have patience don't try it.
You need the Python programming language interpreter:
http://www.python.org/
Run python. At the prompt type the following:
from tictactoe import *
game.evaluate()
The second line will take a few seconds. It is computing its moves for every possible game.
Now you are ready to play. Make a move by calling the play_avg function with some x,y coordinates where you want to play. Coordinates range from 0 to 2. E.g. type:
play_avg(2,0)
The computer will play its...