Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Hi people, I just recently discovered this engine and I've got to say that it looks great.
So far I've been able to make everything I needed work just fine, but one thing keeps bothering me.
The problem is using {w=#n}, it does pause the text but it just waits for the user to click, it doesn't advance on itself.
init:
$ t = Character('Tester', color="#c8ffc8")
label start:
t "Hello, {w=1} this {w=1} is {w=1} a test"
I tried this exact same script in two versions, and I found out that it doesn't work in 6.9.3c but it does work in 6.9.2.
Is there anything else I should do or change to make it work in the current version or is it just bugged?