Solve It!
A downloadable game for Windows
Like to solve mazes? Then Solve It! is for you. Randomly generated mazes. Some with short passages and lots of dead ends, some with long, windy passages and few dead ends. Best of all, some mazes will wrap around the edges of the screen, that is, when you go off one side, you return on the other. This makes mazes even more challenging.
This is an early version of my game. More maze types and modes will be added in the future.
Status | In development |
Platforms | Windows |
Author | TomToad |
Genre | Puzzle |
Tags | maze, Procedural Generation |
Average session | A few seconds |
Inputs | Keyboard |
Download
Download
Solve It.exe 593 kB
Install instructions
Download the exe to a place of your choice and double click.
Comments
Log in with itch.io to leave a comment.
Blitz Max.
' drawline.bmx
' draws a hair at the mouse position using Drawline.
Graphics 640,480
HideMouse
While Not KeyHit(KEY_ESCAPE)
Cls
x=MouseX()
y=MouseY()
DrawLine 32,24,x,y
DrawLine x-2,y,x-10,y
DrawLine x+2,y,x+10,y
DrawLine x,y-2,x,y-10
DrawLine x,y+2,x,y+10
Flip
Wend
How will it be possible to draw a star instead of hair.?
How will I set my codings?
Don't know what you're trying to achieve. Better to ask questions at SyntaxBomb as that is where most of the BlitzMax users have gone.
Anyway, I gave it a go here.
This game is not compatible with my notebook
What are your laptop's specifications? CPU, OS, video? What happens when you try and execute the game? What errors do you get?