Thats the new Renpy engine messing with saves not the dev of this game damn annoying tho i will give you that.
Edit your savegame with
You must be registered to see the links
change money to whatever you want
'file
\renpy\savetoken.py'
open the one thats titled '
savetoken.py not the one that has a 'o' at the end open this file in notepad then hit crtl+f which opens a search menu thing and type in 'if token_dir is None:' which will send u to that area then replace 'if token_dir is None:' with 'if True:'
there are 3 search results, the middle one is the correct one
# Determine the current save token, and the list of accepted save tokens.
token_dir = renpy.__main__.path_to_saves(renpy.config.gamedir, "tokens")
if token_dir is None:
return
keys_fn = os.path.join(token_dir, "security_keys.txt")
if not os.path.exists(keys_fn):
create_token(keys_fn)
change to
# Determine the current save token, and the list of accepted save tokens.
token_dir = renpy.__main__.path_to_saves(renpy.config.gamedir, "tokens")
if True:
return
keys_fn = os.path.join(token_dir, "security_keys.txt")
if not os.path.exists(keys_fn):
create_token(keys_fn)
or take the file in the attachment and save some grind time