- grab unren 0.5 from f95zone
- place the bat in the root DoD folder
- use option 9
- open revalant script.rpy (episodeX.rpy)
- find the label of the scene you want to go to
- open game, SHIFT + O for developer console
- use command: renpy.jump()
- ex: taken from episode8.rpy (this is start of cinema scene with abby. [syntax(d15cinema) = day 15 cinema])
FYI this whole block of code is just context, the only important information is label d15cinema
Code:
label d15cinema:
stop music fadeout 2.0
play music "music/thiefinthenight.ogg" loop fadein 2.5
scene black
with fade
show text "{size=72}{color=#dc38bf}On the date with Aby...{/color}{/size}" at truecenter
with dissolve
pause 2.5
hide text
with dissolve
So you would enter this into the console:
renpy.jump('d15cinema')
also, make sure the persistent file is one that has a complete playthrough on it or else you won't have the proper declared variables and it will crash.
EDIT: or you could just use the multitude of save slots made available to you, but I understand your original suggestion