- Apr 28, 2020
- 1,577
- 9,340
besides replaying (I mean, I don't know why people expect porn game devs to have saves working between updates whenFuck
Well I guess that variable is screwed up for everyone. Anyone got any ideas how to correct that for those who've already played it?
You must be registered to see the links
)another way to do it is you can probably ask a player who won when they load a save between shooting and being captured
something like this
Code:
label after_load:
# If you already got captured there's no point in asking, just assume Emily won
# This doesn't work if you load a save between shooting and choosing the first planet
# might want to add a check for Kaylee's 0.3 scene but won't work if you haven't seen it on that save obviously
# or check total of flirt/witty/friendly/aggressive responses but that's math and I'm too lazy to do it now
if mission1 is not None and capturedStory is None and emilyShooting is None:
# block rollback to stop it from being reset by rollback after loading
$ renpy.block_rollback()
"Who won?"
menu:
"You won":
$ emilyShooting = "MC won"
"Emilywon":
$ emilyShooting = "Emily won"