- Apr 21, 2018
- 12
- 3
Hi everyone, I was wondering if there's a way to enable unlimited save slots in Ren'Py or at least to add save slots and how to go about it.
Yes there's one : Just click on theHi everyone, I was wondering if there's a way to enable unlimited save slots in Ren'Py [...]
>
... Not sure I understand. Which file would I need to open?Yes there's one : Just click on the>
...
By default the number of the slots page is an unlimited integer, and the value of an integer isn't limited in Python ; Python just change from integer to long integer, then to something else, as long as there's enough available space in the memory.
So, by default the number of save slots is : unlimited pages x 6 slots by pages.
< A Q 1 2 3 4 5 6 7 8 9 >
, with "A" being auto-saves and "Q" being quick-saves.The game's Red Embrace: Hollywood. Currently using Windows 10.Which game?
Which operating system?
It's kinda unusual if you're seeing the "normal" UI display the 9 pages and the arrows aren't actually doing anything.
I get you "don't need it anymore", but it'll bug me (briefly) if I don't ask.
I haven't played it, but I assume that they decided to limit the number of save slots, which mean that you need to edit the source code, or find a mod that do it for you.The game's Red Embrace: Hollywood. Currently using Windows 10.
Thanks for the help!Yup. They limited the number of save slots by creating their own custom save/load screen.
Download the attached "screens.rpy" file and stick it in your /game/ folder.
The arrows will now work beyond page 9. Also there are keybinds for PrevPage "[" and NextPage "]".
It'll also tell you what page you are on too.
To anyone wondering about the game, I found it here:
You must be registered to see the links
(well, I found it elsewhere, but that's the final link)
It's a gothic vampire VN with adult themes.
A really well produced game, albeit not a sexual one as far as I can see.
Sorry to respond to this so late, but depending on the game, you might not want to do this. If the author has made a custom save UI, this might create visual glitches at best, and compatibilty issues with old saves/custom UI changes at worst. If the game uses the default Ren'py UI this is fine, but if not you just want to take this short bit of code I'm about to link and place it at the bottom of the save init in the screens file, which will allow for the page scroll functionality regardless of the game UI. So in the screens file, you want to search for the line that readsThanks for the help!
That's 999 pages with 6 slots on every page. So there's someone that either has patience to click ">" a thousand times to find the save limit or really has 6k savesis there's a anyway to make unlimited save slots for renpy game name Motherless?
this game has 999 save slot.
i wanna make it more (like 9999).
if there is,please tell me.
tnx
FilePageNext(max=999)
in screens.rpy
, just remove max=999
and it should work, I really don't want to check if it works but I don't see why it wouldn't