Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Thanks so much!! Would there be a way to make this only work on ADV dialogue? I'm using Nighten's phone script for NVL and the pausing makes the animations replay after the pause. 

(+1)

This should be doable if you add 

 or renpy.get_statement_name() == "say-nvl"

to the bigger conditional inside the "add_speech_pauses" function. So it should look like:

def add_speech_pauses(text_input):
    if prev_filter:
        text_input = prev_filter(text_input)
    if persistent.speech_pauses is not True or preferences.text_cps == 0 or renpy.get_statement_name() == "say-nvl":
        return text_input
    return speech_pause_adder(text_input)

Finally got around to giving this a go, and am getting the error:

AttributeError: module 'renpy.exports' has no attribute 'get_statement_name'

If it's not fixable, I can just change the way I write text for those sections. Thanks for trying to help!

It could be that this is a newer function you would need to update Ren’Py for. What version are you running?

8.3.2!

(+1)

I see, yeah after checking, this function was introduced in 8.3.4, so you would need to update. 

Otherwise, you could also replace the function with a variable of your own and manually turn it “on” or “off” whenever you want the pauses active or not. I hope this helps!