- Oct 24, 2019
- 1,391
- 1,105
The dev uses persistent store and even keeps track of what episode you were on. This is at the front of the current script:
They then set firstTimePlaying to false. So you need to do one of the following:
Trash the persistent store by entirely deleting the save directory for this game wherever your platform's Renpy hides such stuff.
or
Enable the console, start the game, do a Shift-O and then type
close the console and quit the game. Start it again, and this time the game will think that you are a newbie again.
Note: Dev is one of those asshats that both hides everything in rpa archives and also removes all of the renpy source code in a vain attempt to keep people like me from answering your question. And, of course, they have disabled the console. So park the attached decompiled options file that I have edited to re-enable it in your game directory.
Code:
$ persistent.current_episode = 2
if persistent.firstTimePlaying:
Trash the persistent store by entirely deleting the save directory for this game wherever your platform's Renpy hides such stuff.
or
Enable the console, start the game, do a Shift-O and then type
Code:
persistent.firstTimePlaying=True
Note: Dev is one of those asshats that both hides everything in rpa archives and also removes all of the renpy source code in a vain attempt to keep people like me from answering your question. And, of course, they have disabled the console. So park the attached decompiled options file that I have edited to re-enable it in your game directory.
Damn this thread is a real dumpster fire lmao
Does anyone know how to replay the prologue? I had to close the game but now when I reopen it, it just skips ahead past the prologue now.
Same thing happens after redownloading the game.