Multiple Save Game Slots Guidance

Surely I don’t have to save to 2 separate slots to get multiple save files working, right? I’ve found that when I load game data at the start of the game, the “DoesSaveGameExist” node is checking only for the default value found in CurrentSaveSlot. My thought was to use that slot to store all my other save names and load the save the player chose (was gonna implement UI for it but haven’t done it yet), but that actually requires me to save once to the default value found in CurrentSaveSlot, then another time with a generated save slot name. This feels like the wrong approach, any advice?

Loading and game start:

Saving:

1 Like

If you want the different players to have separate save games, then you need a separate slot for each player.

The easiest way to do that, is to have one main slot that contains the player names, and the slot names. Then, each of the other save slots is a copy of your main save game.

1 Like