- Sep 26, 2018
- 3,143
- 3,218
everything works just fine except for a couple of things like adding sound and making go a little bit faster
when I hold down or press the up/down keys it restarts the sound/music track
is there a way to make it go faster?
it goes from 0 to 30 then to 0
class:
screen: Just updated
label
when I hold down or press the up/down keys it restarts the sound/music track
is there a way to make it go faster?
it goes from 0 to 30 then to 0


class:
Python:
class BATIONS(object):
def __init__(self, name):
self.name = name
@property
def mastur_image(self):
global masturbation_move
mtr = "masturbation/{}_{}.png".format(self.name, str(masturbation_move))
if renpy.loadable(mtr):
return mtr
else:
return "avatar/empty.png"
Python:
screen masturbating_button:
if ryan_lust > 340:
imagebutton:
xalign 1.0
yalign 1.0
idle "cum_button"
hover "cum_button"
action Show("masturbation_move")
elif ryan_lust < 340:
pass
image cum_button:
"images/lust/penis_timer_cum_button.png"
pause 1.0
"images/lust/penis_timer_cum_button2.png"
pause 1.0
repeat
screen masturbation_move():
if masturbation_move < 30:
key 'repeat_K_UP':
action SetVariable('masturbation_move', masturbation_move + 1)
key 'K_UP':
action SetVariable('ryan_lust', ryan_lust + 5)
if masturbation_move > 0:
key 'repeat_K_DOWN':
action SetVariable('masturbation_move', masturbation_move - 1)
key 'K_DOWN':
action SetVariable('ryan_lust', ryan_lust + 5)
if ryan_lust == 500:
timer 0.001 action Hide("masturbation_move"), Call("masturb")
for q in MSTU:
add q.mastur_image
Python:
label masturb:
show mas_icon2
$ ryan_lust -= 500
$ renpy.pause(3.0, hard=True)
hide mas_icon2
return
image mas_icon2:
"images/outhouse_ryan_handjob_M_cum1.png"
pause 1.0
"images/outhouse_ryan_handjob_M_cum2.png"
pause 1.0
"images/outhouse_ryan_handjob_M_cum3.png"
pause 1.0
"images/outhouse_ryan_handjob_M_cum4.png"
pause 1.0
"images/outhouse_ryan_handjob_M_cum5.png"
pause 1.0
"images/outhouse_ryan_handjob_M_cum6.png"
pause 1.0
Last edited: