null
Posted: Mon Mar 30, 2020 10:25 am
null
Supporting creators of visual novels and story-based games since 2003.
https://lemmasoft.renai.us/forums/
Code: Select all
label event:
$ randtick = renpy.random.randint(1,3)
show eileen happy dissolve
if randtick == 1:
e "Event 1"
jump event1
elif randtick == 2:
e "Event 2"
jump event2
else:
e "Event 3"
jump event3Code: Select all
label event1:
$ randtick = renpy.random.randint(1,3)
show eileen happy dissolve
if randtick == 1:
e "1"
jump rand1
elif randtick == 2:
e "2"
jump rand2
else:
e "3"
jump rand3