- Oct 21, 2017
- 95
- 121
I have never written any RenPy code before but your game inspired me.
All the key presses in the shower scene felt to me would play better as some kind of animation and as luck would have it your shower scene images are consecutively numbered.
I am sure there are better ways than this but after a little playing I came up with:
All the key presses in the shower scene felt to me would play better as some kind of animation and as luck would have it your shower scene images are consecutively numbered.
I am sure there are better ways than this but after a little playing I came up with:
Code:
label shower:
play music "audio/Mom sexy time.mp3"
scene start60
MOM "Mmmm."
J "(...)"
$ count = 61
pause(0.3)
while count < 94:
$ currentImage = 'start' + str(count)
scene expression currentImage
if count == 64:
MOM "Aaaaah"
if count == 67:
MOM "A...Almost"
if count == 91:
MOM "Why do I always squirt so hard?"
pause(0.3)
scene 2018_0619_1635_11_898
pause(0.3)
$ count += 1
return