Search found 2 matches

by Purple_dia
Sat Jan 12, 2019 7:20 pm
Forum: Ren'Py Questions and Announcements
Topic: How to limit save slots?
Replies: 4
Views: 519

Re: How to limit save slots?

You can just remove the paging system from the file_slots screen. No need to fiddle with max saves if you only want one page - remove the ability to go to page 2, 3, 4 etc, and the player only has access to the save slots on the first page. Just be sure to leave a way to access the quick load and q...
by Purple_dia
Sat Jan 12, 2019 2:54 pm
Forum: Ren'Py Questions and Announcements
Topic: How to limit save slots?
Replies: 4
Views: 519

How to limit save slots?

The default game model created by Renpy has an infinite amount of save slots and 6 autosave and quicksave. My main goal is to limit the manual save slots to only 6 in 1 page, as opposed to 6 saves per unlimited pages. So, in the gui I have by default define gui.file_slot_cols = 3 define gui.file_slo...