A chess game shouldn't be too hard. You'd just need to create an 8x8 array (DIM BOARD[8,8]) that you would use to keep track of where each piece is, then just program the movement options for each piece. (When the player taps a king, they should only have options to move one each direction, for example) Obviously if you wanted a computer player, things would be much more complicated, but a pass...