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!