This page is out of date

You've reached a page on the Ren'Py wiki. Due to massive spam, the wiki hasn't been updated in over 5 years, and much of the information here is very out of date. We've kept it because some of it is of historic interest, but all the information relevant to modern versions of Ren'Py has been moved elsewhere.

Some places to look are:

Please do not create new links to this page.


Configuración de velocidad de Texto

Para ajustar la velocidad por defecto del texto debes colocar este código en tu script:

    python:
        if not persistent.set_text_cps:
            persistent.set_text_cps = True
            _preferences.text_cps = 100

100 es el número que define la velocidad del texto, también es la velocidad máxima, lo que significa que una línea completa de texto se mostrará de manera instantánea.