Whispers of the Wind

I made this little adventure while still learning Mini Micro, so it's pretty simple! You wander through a desert, listen to some mysterious wind, and make choices that could lead you to a hidden treasure... or something unexpected. Nothing too fancy, but I had fun making it!


Download

Download
user.minidisk 3.8 kB

Install instructions

open the user disk using your mini micro

Comments

Log in with itch.io to leave a comment.

Nice game!  I haven't solved it yet, but I'm going to keep trying.

One thing that would make it a lot nicer would be to word-wrap the text.  You can do that by just changing `print text` in the printSlow method to:

```
for line in text.wrap
    print line
end for
```

Also, I found the delays a bit too long in most cases; but sometimes, it prints something that happens and then clears the screen too quickly.  Be sure to put in some sort of "press return to continue" after printing an event, so the player has time to read it before the screen clears!