Almosr all saves work, those that not - connected with changes in script will not be fixed
Well, not really. I started a whole new game, enter the MC's name, saved, loaded, and boom, the game become not savable :
Code:
Can't pickle <function NextFrameF at 0x07DED630>: it's not the same object as store.NextFrameF
It's because you defined
NextFrameF twice. Once in the
after_load label, and once in an
init block. The one on the
after_load is useless. An init block is executed once at every start of Ren'py, so the function is already defined when the player load a saved game.
Just remove the
NextFrameF you defined in the
after_load label, and then the game will save without problems.