Maze This is a children's maze game using only the arrow and exit keys. There are currently 24 different mazes available, selected at startup. (Actually there are only 6, but, I flip them around a bit to get 4 variations of each.) The game is very simple, it uses the line drawing set to make the maze. The player's current position is indicated by a flashing diamond, the goal is to move the player, using the arrow keys only, to the end point, a flashing block character. For a very challenging game there is a 'blind' option: "Do you want to play without drawing the maze (Y/N)? " Here, you have to feel your way around the maze. Making your own mazes: The mazes are simple ascii files on disk, you can make your own by following a few rules: - They must be 80 characters wide (full screen). - The 1st and 80th columns must be blank (spaces). - They must be 23 lines deep. - The starting player's position is marked with an 'S'. - The ending point (goal) is marked with an 'E'. - Almost any character can be used to build the walls, but, the pathways must be spaces. You can make smaller mazes if you like, just pad the width and depth out to full size with spaces. Have fun, Dave Cote