Ah. That's pretty good, except it generates maps based on what looks better in ascii over what functions better in ascii. For example, rather than do a straight up array with "#" being walls, spaces being hallways, "D" being doors, etc, it generates upper "-" for top walls, lower "_" for bottom walls, etc, which look nice, but in reality don't work so well because now you have no single character that represents a hallway or passable space. If you were to read in the array, you would not be able to move an ascii character around it without hitting invisible walls and passages with a width of 0 (Visually looks like a passage way though). test Hey Everyone, Does anyone know of a random dungeon generator that can output in ascii? Basically I want to find a random dungeon generator that could output in some form of ascii so that it could be read in by a program as an array. Any ideas?