In Tic Tac Toe, you want to get three red in a row to win! I tried to make an A.I. called "A", that I gave simple rules to.
I got the artwork (kinda) from: https://scratch.mit.edu/projects/160126196/ I converted scripts from Python to Scratch made by: https://www.youtube.com/playlist?list=PLzMcBGfZo4-mb4e1J1eKcdI3PquhPt2C7 I tried to make an A.I. called "A", that I gave simple rules to. First, I had the A.I. to check if itself could win, if not, check if the player can win so that it can block you. Second, I had it check (if those couldn't happen) if there're any corners available and if so, pick a random one. If no corners were available then, I had it check if the center was open or not, and if it is, go to the center. Lastly if none of those spots can be played then, it goes to a random edge.