Can you manually turn on the fast skipping feature?

Deleted member 563623

Active Member
Apr 19, 2018
570
930
The renpy engine has the built in feature called fast skipping that allows users to "to immediately skip to the next important interaction" (so i assume from choice to choice, for instance) if it's turned on.

Is there a way to manually turn this on in a game you've downloaded?

I have no clue what i'm doing, but i found a line in [renpy] -> config.py labeled "fast_skipping" and changed it from false to true, but that didn't change anything in game.

Is there any way to accomplish this?
 

Deleted member 563623

Active Member
Apr 19, 2018
570
930
Ah, that's not quite what i was looking for. That turns on 'normal' skipping which many games already have enabled. There's also 'fast' skipping which lets you jump directly to the next choice.

Luckily i kept tinkering around and figured out how to get it working, which in case anyone else ever wonders about this is done by going to Renpy-> 'config.py' and editing the lines

'developer = false' to 'developer = true'
and 'fast_skipping = false' to 'fast_skipping = true'
Then pushing 'shift' + '>' ingame

Of course screwing around with game files like this is always risking busting the game partly or completely, so keep that in mind.