08-08-2025, 11:07 PM
(08-07-2025, 04:54 PM)SierraKen Wrote: I saw this on a Commodore group page on FB and asked ChatGPT to convert it to QB64pe. Then I fixed it like usual and added a couple things.
This is one of the smallest maze makers. lol The Commodore version looks a lot different, but it's the same CHR$ number.
Code: (Select All)
'Maze Maker - ASCII
_Title "Maze Maker - ASCII"
Randomize Timer
For t = 1 To 2000
Print Chr$(Int(205.5 + Rnd));
Next t
Sleep
with this program. put it into graphics mode. add the _loadfont command. first for one of the c64 original character sets.
i was going to propose. use with "microknight" or "topaz" or other such font. but that was for commodore amiga. not for c64. likely the character set changed. out of only two slants used. in that famous "10 print" program.

