JoiPlay is for RPGMaker games only, no? This is a Ren'Py game.
Monk&Imp.co
Recent community posts
I got a warning
"error: invalid zip file with overlapped components (possible zip bomb) "
in the "game" folder. Disabled the check and it unpacked fine, but still, could you please repack the 0.17 release?
(btw, Linux tooling is amazing!)
Oh, and while we're at it. Could you overwrite in Harem_Hotel.py
----
# No save directory given.
if not save_directory:
return os.path.join(gamedir, "saves")
----
with
----
# No save directory given.
if not save_directory:
return os.path.join(gamedir, "saves")
if "RENPY_PATH_TO_SAVES" in os.environ:
return os.environ["RENPY_PATH_TO_SAVES"] + "/" + save_directory
----
please?
It's a new feature in renpy 7.5+, which allows me to move the annoying ~/.renpy folder to somewhere else via environment variable. Yes yes, i could always fix it myself, but still...