Btw you can actually use edited saves. this what I use
In the game folder, where you can find the exe. There is a other folder "renpy".
Open it, search for the "savetoken.py" open it with the simple texteditor, and then look for this:
def verify_data(data, signatures, check_verifying=True):
"""
Verifies that `data` has been signed by the keys in `signatures`.
"""
for i in signatures.splitlines():
kind, key, sig = decode_line(i)
if kind == "signature":
if key is None:
continue
if check_verifying and key not in verifying_keys:
continue
try:
vk = ecdsa.VerifyingKey.from_der(key)
if vk.verify(sig, data):
return True
except Exception:
continue
return False
chance the last entry to "True" save , restart the game and then your edited save will work