- Sep 26, 2018
- 3,130
- 3,194
trying make a thing for renpy when you move your lust goes up to a point before he cums there 5 stages
trying use stamina with numbers instead of using true/false
so I want lust and stamina to work with each other
like if stamina is at 20 it's at stage 1 the lust goes by 25
if stamina is at 40 it's at stage 2 the lust goes by 20 and so on
hope you you understand what I'm trying to do the code that I show below it does work the way I want it to but only with stamina_true == True
here code
animation code
trying use stamina with numbers instead of using true/false
so I want lust and stamina to work with each other
like if stamina is at 20 it's at stage 1 the lust goes by 25
if stamina is at 40 it's at stage 2 the lust goes by 20 and so on
hope you you understand what I'm trying to do the code that I show below it does work the way I want it to but only with stamina_true == True
here code
Python:
label start:
$ Playing = True
while Playing:
if clickType == "mapSelect":
if stamina_true == True:
if ryan.lust >= 0 and ryan.lust <= 76:
$ ryan.lust += 25
$ location = UIreturn
elif ryan.lust == 100:
$ ryan.lust -= 100
$ stamina_true = False
$ stamina_true2 = True
$ location = UIreturn
elif stamina_true2 == True:
if ryan.lust >= 0 and ryan.lust <= 81:
$ ryan.lust += 20
$ location = UIreturn
elif ryan.lust == 100:
$ ryan.lust -= 100
$ stamina_true2 = False
$ stamina_true3 = True
$ location = UIreturn
elif stamina_true3 == True:
if ryan.lust >= 0 and ryan.lust <= 91:
$ ryan.lust += 10
$ location = UIreturn
elif ryan.lust == 100:
$ ryan.lust -= 100
$ stamina_true3 = False
$ stamina_true4 = True
$ location = UIreturn
elif stamina_true4 == True:
if ryan.lust >= 0 and ryan.lust <= 96:
$ ryan.lust += 5
$ location = UIreturn
elif ryan.lust == 100:
$ ryan.lust -= 100
$ stamina_true4 = False
$ stamina_true5 = True
$ location = UIreturn
elif stamina_true5 == True:
if ryan.lust >= 0 and ryan.lust <= 99:
$ ryan.lust += 1
$ location = UIreturn
elif ryan.lust == 100:
$ ryan.lust -= 100
$ stamina_true5 = False
$ stamina_true = True
$ location = UIreturn
$ location = UIreturn
Python:
hbox:
yalign 1.0
xpos 750
if stamina_true == True and ryan.lust == 100:
$ renpy.sound.play("/audio/maleorgasm.wav", loop=False,)
add "dick1"
if stamina_true2 == True and ryan.lust == 100:
$ renpy.sound.play("/audio/maleorgasm.wav", loop=False,)
add "dick2"
if stamina_true3 == True and ryan.lust == 100:
$ renpy.sound.play("/audio/maleorgasm.wav", loop=False,)
add "dick3"
if stamina_true4 == True and ryan.lust == 100:
$ renpy.sound.play("/audio/maleorgasm.wav", loop=False,)
add "dick4"