• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

Ren'Py Renpy question about auto advancing text.

strenif

Engaged Member
Aug 18, 2017
2,795
4,909
Hey. I tried google but wasn't able to find what I'm looking for.

I'm trying to find a way in renpy for text to auto advance without the player clicking.

Something like.

MT "{i}So warm.{/i}"
$ renpy.pause ()
MT "{i}So warm. So hard.{/i}"
$ renpy.pause ()
MT "{i}So warm. So hard. So big!{/i}"

The effect I'm going for is for the player to get to this section of the script and have the displayed dialog expand out into the full text without the player having to click each time.

Anyone know if this is possible and how to achieve it?
 

K.T.L.

Keeping Families Together
Donor
Mar 5, 2019
506
949
Sounds like you could use the {w} (wait) tag.
MT "{i}So warm.{w=2} So hard.{w=2} So big.{/i}"

Just set the number in each tag to the delay you want, in seconds.
 
Last edited: