Page 1 of 1

[SOLVED] Prevent access to quick saves

Posted: Mon Jul 26, 2010 4:18 pm
by Ivlivs
When you press "Previous" on the save screen and you're on the first page of saves, it takes you to the quick save list. How do I prevent access to this list?

Re: Prevent access to quick saves

Posted: Tue Jul 27, 2010 3:59 am
by denzil
If you want to completely prevent accessing auto-save, then you can completely disable it as well, by putting this somewhere in init section:

Code: Select all

$ config.has_autosave = False
If you still need auto-save for some reason, then you probably have to build your own save/load screen using: http://renpy.org/wiki/renpy/doc/referen ... aved_games and use the regexp to filter out the auto save files.

Re: Prevent access to quick saves

Posted: Tue Jul 27, 2010 9:44 am
by Ivlivs
Thanks a lot, denzil! It really helped.