Hey kids
If you want to decouple this version from Steam because reasons or you don't even use Steam in the first place (yours truly), here's how. This will also remove a pregnant timeout at game load when your non-existent Steam software is looked for in order to connect to your non-existent Steam account:
If you know how to unpack the rpa archives and decompile the rypc back to rpy do this:
Edit your game/scripts/options.rpy file and add the following line:
Code:
define config.enable_steam = False
If you don't want to bother with that or might possibly still get the timeout because of how Renpy loading works, you can hack directly on this file instead in your renpy runtime:
<yourgamelocation>/renpy/common/00achievement.rpy
Look for the following around line 25:
Code:
# Should steam be enabled?
config.enable_steam = True
Flip that variable to false
So dude, maybe this will take care of your save location problem? I have two theories for you. One is that your winders user documents folder is screwed due to corruption or hard drive problems. The other is that you maybe have a Steam account, didn't buy this from Steam and have a setup on Steam to allow you game data to live in the cloud? That's all just speculation on my part because I don't do Steam and don't how how Renpy's SDK ties into it.