5.00 star(s) 1 Vote

nexer

Forum Fanatic
Feb 5, 2019
4,572
17,508
The only new new thing I added was a jump to episode 2 at the end of episode 1 because episode 2 was on a different ren'py page as each episode is within their own folders, but, that should not have caused the issue I don't think, the error I was getting with original save was the scripts has changed, apart from that and correction with changing Sam's line that had Triss saying it and couple of spellings, that's all I touched

I been testing the game throughout episode 2 with the new choices added when I added them to make sure, was getting no issues, just as soon as I tested it with episode one save, I got the issue

While running game code:
File "renpy/common/00action_file.rpy", line 498, in __call__
renpy.load(fn)
Exception: Couldn't find a place to stop rolling back. Perhaps the script changed in an incompatible way?

But, I am pretty sure, that, just adding jump to episode 2 at the end of the script of episode 1 would not cause that issue,
If you haven't solved it yet, it's a problem with your save file
Python:
def __call__(self):
            if not self.get_sensitive():
                return
            fn = __slotname(self.name, self.page, self.slot)
            if not main_menu:
                if self.confirm:
                    if config.autosave_on_quit and not fn.startswith("auto-"):
                        renpy.loadsave.force_autosave()
                    layout.yesno_screen(layout.LOADING, FileLoad(self.name, False, self.page, slot=self.slot))
                    return
            renpy.load(fn)
And here a possible solution
 
  • Red Heart
Reactions: SexyShelly
5.00 star(s) 1 Vote