@rainces this is how I did so that I don't get to repeat clicking the "get inside" option bug when Lucy is in the bath
Code:
label lucybathroom01:
scene door02 01
$ renpy.pause()
menu:
"Get inside":
$ randomnum = renpy.random.randint(1,2) # (randomize between 1 and 2)
if randomnum == 1:
scene bathroom lucy100
$ renpy.pause()
show bathroom lucy100_2 at center
$ renpy.pause (0.5)
show bathroom lucy100_2 at Move((0.0, -3.6), (0.0, 0.0), 5.0)
$ renpy.pause (5)
scene bathroom lucy101
L "Ahhhh!"
show bathroom lucy102
L "What's the matter with you?"
L "Do you ever knock?"
b "Sorry, I thought it was empty!"
L "Of course you did!"
$ renpy.pause ()
jump skiptime
else:
scene bathroom lucy102
$ renpy.pause ()
L "Eeerrrrr"
L "Do you ever knock?"
b "Ohh sorry, I'm leaving"
$ renpy.pause ()
show bathroom_lucy102 90 at center
$ renpy.pause (0.5)
show bathroom_lucy102 90 at Move((0.0, -1.3), (0.0, 0.0), 2.0)
$ renpy.pause (2.5)
scene bathroom lucy102
L "GET OUT!"
$ renpy.pause ()
jump skiptime
"Stay out!":
jump map2
Last edited: