Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits)

Is there a keyboard key to quick save, skip, and quick load now? Because the bottom bar is no longer a thing and I cannot find a way to re-enable the quick menu. But there is still a save spot for Quick saves, so I assume it is a feature I do not know how to access anymore. The skip feature was very useful for having to replay scenes like the weekly class punishments.


Edit: Also, a lot of the new scenes keep looping for me. For example, any new scene with Rachel has the dialogue between her and the head master loop three or more times before it moves on and some animations do the same, such as finishing on her, it shoots back to him commenting on her petite body then the animation plays again then they talk about her petite body then the animation again then her petite body THEN the dialogue that should appear AFTER the animation finally shows up but without the animation before it this time. @.@

It sounds like something has gotten corrupted, and you might benefit from a fresh download, maybe download & restart.

However, there is a way to enable quick save/load with the keyboard. The file below will let you Quick Save with `F5` and Quick Load with `F6`. In the ./game folder, name a file something like "quick_keys.rpy" and put the following in it:

init 999 python:
    try:
        config.underlay[0].keymap['quickSave'] = QuickSave()
        config.keymap['quickSave'] = 'K_F5'
        config.underlay[0].keymap['quickLoad'] = QuickLoad()
        config.keymap['quickLoad'] = 'K_F6'
    except:
        pass