Was trying to figure out why I never got prompted to save for act II and seem to be stuck back on V0.4.7 (All Paths) when the end of content comes up. This, in spite of the fact that the download advertises itself as 0.5-pc and has rpy files going up to v50.rpy. Note, I unpack and dump any rpa archives and then run unrpyc as necessary to decompile bytecode for when authors decide to be assholes about their content.
The end of V47.rpy looks like:
Code:
MC "Oh... I'm a bit drunk... I should lie down and rest"
MC "Maybe read a book..."
jump yann11
That matches the dialog I got at the end of the playthrough when I was dumped into end of content tease. So where is yan11?
Code:
Ataegina-0.5-pc/game $ find . -name "*.rpy" -exec grep -iH "yann11" {} \;
./act1vars.rpy: jump yann11
./v47.rpy: jump yann11
./v39.rpy:label yann11:
Way back in v39.rpy content? Really? Okay so maybe that is just the dev re-using code like a champ, and the hit that looks suspiciously like something that might be mean to create a save for act ii (act1vars.rpy) also drops back to it. A look at act1vars.rpy does confirm that it is indeed the save game process for act ii, and it begins with a "label act1vars" statement. So where in hell does that jump happen?
Code:
Ataegina-0.5-pc/game $ find . -name "*.rpy" -exec grep -iH "jump act1vars" {} \;
./v50.rpy: jump act1vars
Thought so.... So our "jump yan11" statement at the end of v47.rpy needs to be replaced by whatever is at the top of v48.rpy instead. That just happens to be "label v48jan". So lets just hack v47.rpy so it continues on with the proper ending of act 1. I've attached the fixed v47.rpy file that got me going again with the act 1 content from a v0.4.7 save.