- Sep 26, 2018
- 3,130
- 3,194
is there a way to change this so that you have to keep pressing the spacebar?
heart/Penis meter for renpy game from My Cute Roommate
init code:
video setting:
code after start label:
screen:
image goes into the image folder
one image goes into images/button
heart/Penis meter for renpy game from My Cute Roommate
init code:
Python:
init:
$ womanbar = False
$ womanbar_stop = False
$ penisbar = True
$ penpoint_stop = 15
init python:
timer_no_button = False
penistimerst = False
Python:
image your_video_name = Movie(play="Your_video")
Python:
label start:
e "You've created a new Ren'Py game."
$ penistimeron = True
$ penpoint = 4
$ n = 0.02
$ penistimer = 20
$ womanbar = True
$ timerjump = "cous_massage_fuck_ass_cum"
show screen penistimer
show your_video_name
label cous_massage_fuck_ass_cum:
e "Once you add a story, pictures, and music, you can release it to the world!"
Python:
screen penistimer(penisxalign=1.0):
if penistimeron:
timer 0.1 repeat True action If(penpoint < penistimer, true=SetVariable('penpoint', penpoint + n), false = [Hide('penistimer'), Jump(timerjump)])
else:
timer 0.1 repeat True action If(penpoint > 0, true = SetVariable('penpoint', penpoint - n), false = SetVariable('penpoint',0))
if penistimerst:
timer 0.1 repeat True action If(penpoint >= penistimerst, true = [Hide('penistimer'), Jump(timerjump)], false = NullAction())
if penisbar:
vbar value StaticValue(penpoint, penistimer):
align (penisxalign, 0)
maximum (200, 500)
left_bar "ind_empty"
right_bar "ind_full"
thumb None
thumb_shadow None
if womanbar:
vbar value StaticValue(penpoint, penistimer):
align (0.0, 0)
maximum (200, 500)
left_bar "indg_empty"
right_bar "indg_full"
else:
if womanbar_stop:
timer 0.1 repeat True action If(penpoint_stop < 18, true = SetVariable('penpoint_stop', penpoint_stop + n), false = SetVariable('penpoint_stop',15))
vbar value StaticValue(penpoint_stop, penistimer):
align (0.0, 0)
maximum (200, 500)
left_bar "indg_empty"
right_bar "indg_full"
if penpoint > 10 and not timer_no_button:
imagebutton:
if penisxalign == 0.0:
pos (58,29)
else:
pos (1777,29)
idle "images/Buttons/penis_timer_cum_button.png"
hover im.MatrixColor("images/Buttons/penis_timer_cum_button.png",im.matrix.brightness(0.10))
action Hide('penistimer'), Jump(timerjump)
screen w_bar(var=1, maxvar=24):
vbar value StaticValue(var, maxvar):
align (0.0, 0)
maximum (200, 500)
left_bar "indg_empty"
right_bar "indg_full"
one image goes into images/button