For example:
[1] Slot number
[2] Date/time
[3] Character route
[4] Chapter number
[5] Day number
It should look like this:

What I currently got is:

Right now I've only used 1 variable and the text goes outside the box. The code, \n, that is used for breaking to next line doesn't work if I place it like this in the script. Renpy ignores them:
Code: Select all
$ save_name = "Jack Route \n Chapter 1 \n Day 22"Code: Select all
screen load_save_slot:
$ file_text = "%2s. %s\n %s" % (
FileSlotName(number, 6),
FileTime(number, empty=_("Empty Slot.")),
"\n",
FileSaveName(number)) viewtopic.php?f=8&t=37166&hilit=custom+save+slot
https://www.renpy.org/doc/html/save_loa ... -variables
but I still don't understand how to use multiple variables for naming save/load slots.
I'd understand better with samples, thank you in advance.
