PiggyNose : Hit a weird bug in chapter 2.
TL;DR: Seems the trouble is that the controls for the post fishing sex scene are only put on screen during that firstTime setup. Otherwise you hit a bug where you play the animation, but don't have any controls.
Longer summary:
When fishing for the first time with Clarice/Ayiana during my first playthrough, I follow the path to the NSFW scene. However I get stuck in a permanent loop. Troubleshooting via the console shows that firstTime is set to False, even when playing through the entire game again from scratch.This leads to playing the looping animations, but with no controls or way to back out or move forward in the game.
Manually loading a save prior to the scene at the Prompt for accepting the scene and checking shows firstTime set to False, as mentioned. If I manually set
firstTime=True
via console and then accept, everything happens as expected.
Looking at the code, it seems that the glitched firstTime variable is the only real cause for the issue. And that's simply because it bypasses the normal control setup.
Code:
label chapter2_scene12x:
#$persistent.CG39_unlocked = True
if firstTime == True:
$clariceSc6 = True
stop music fadeout 1.0
$renpy.music.play("audio/sensual_music.ogg", loop=True)
show ch2mhsc12x_img1
with dissolve
hide ch2mhsc12x_img1
show ch2mhsc12x_img2
with dissolve
cl "I don't want my sister to see me with a dick in my pussy..."
hide ch2mhsc12x_img2
show ch2mhsc12x_img3
with dissolve
cl "Let's go deeper into the woods."
hide ch2mhsc12x_img3
$renpy.sound.play("audio/fucking.ogg", loop=True)
show ch2mhsc12x_img4
with fade
mc "Ayiana could appear at any moment..."
cl "This is so exciting."
hide ch2mhsc12x_img4
$firstTime = False
$poseView = 1
show screen sexButtons # This never happens if the scene is triggered when firstTime=False
firstTime seems like a frequently reused variable, so not sure what might have caused it to be tripped False when it should have been True during this interaction.
Code:
Brooks in Wild West/game$ grep -R firstTime *.rpy | wc -l
718
Anyway, great game so far, just wanted to report the bug!