Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

Putting a link to your itch.io page in the about section would be nice.

Remembering the language choice is also something to consider as do you really need to ask it every time?  No, once is enough for most players.

This is somewhat dumb but for Ren'Py you need to add an extra _() to the input so it translates the prompts in other languages.

start.rpy
$ name = renpy.input(_("¿Como deseas llamarte?"))

translate english strings

    # game/start.rpy:18

    old "¿Como deseas llamarte?"

    new "What do you want to be called?"

(+1)

haha I forgot to translate the question about the name lol, as for the other two suggestions, I'll add them for the next update, thanks for your comment

Happy to help.  For the English quit screen forgot an 'n'.  A few of the Notify messages also need translated in HouseMap.rpy

(+1)

haha I must pay more attention to my work in the next update, thanks for pointing out the errors