How to find a save file: Difference between revisions

From Andrealphus Games
Jump to navigation Jump to search
m (changed size of pictures)
No edit summary
(5 intermediate revisions by one other user not shown)
Line 6: Line 6:
The first thing that needs explanation is how the Renpy save file system works.  
The first thing that needs explanation is how the Renpy save file system works.  
[[File:Ingame save system.png|right|frameless|414x414px]]
[[File:Ingame save system.png|right|frameless|414x414px]]
'''Pages''': You'll notice the numbers on the bottom of your screen. Those are the '''page numbers'''. In Renpy games the save system is built so that you have '''6 entries for each page'''. The amount of pages you can have '''is not limited,''' however Renpy games will always only show you the first nine pages. You can go beyond the ninth page, but beware that there is no more indication about which site you're currently on. In this example, it'll display the number of '''the page you're currently on in gray'''.
'''Pages''': You'll notice the numbers on the bottom of your screen. Those are the '''page numbers'''. In Renpy games the save system is built so that you have '''6 entries for each page'''. The amount of pages you can have '''is not limited,''' however Renpy games will always only show you the first nine pages. You can go beyond the ninth page, but beware that there is no more indication about which page you're currently on. In this example, it'll display the number of '''the page you're currently on in gray'''.


'''Save slots''': The save slots above the page numbers are limited to 6 entries per page and are in a fixed order. It's always from the top left to bottom right and numbered from 1 to 6 (top left is 1 and bottom left is 4).
'''Save slots''': The save slots above the page numbers are limited to 6 entries per page and are in a fixed order. It's always from the top left to bottom right and numbered from 1 to 6 (top left is 1 and bottom left is 4).  


'''Save file name''': The save file name is a combination of page number + save file slot. The first number of the save file name is always the Page number on which the save slot is located and the second number is the save slot itself.  
'''Save file name''': The save file name is a combination of page number + save file slot. The first number of the save file name is always the Page number on which the save slot is located and the second number is the save slot itself.  


In case of the picture you can see on the right side the name for the save file you're looking for would be: 6-1-L1.save.  
In case of the picture you can see on the right side the name for the save file you're looking for would be: 6-1-LT1.save. '''This name pattern is the same for all platforms.'''


=Save file location your device=
=Save file location on your device=
You would think that the save files for the game are saved in the normal game folder under '''game/saves''', but that is only a local copy (only valid for the copy of the game the folder is in) of the actual save files which are located somewhere else.


==Windows==
==Windows==
You would think that the save files for the game are saved in the normal game folder under '''game/saves''' but that is only a local copy (only valid for the copy of the game the folder is in) of the actual save files which are located somewhere else.
[[File:Save file location renpy.png|right|frameless|375x375px]]
[[File:Save file location renpy.png|right|frameless|375x375px]]
To make sure that you have the correct save file you can use this command on Windows to navigate to the correct save file location: <code>%appdata%/RenPy</code>. This command will bring you to the folder where '''all Renpy games''' save the most recent version of a save file. You should see a couple of folders which are named similar to the ones in the picture. The LoSe_xyz folders are the ones for L&S:Second Base.
To make sure that you have the correct save file you can use this command on Windows to navigate to the correct save file location: <code>%appdata%\RenPy</code> (you can copy and paste this into the Windows search). This command will bring you to the folder where '''all Renpy games''' save the most recent version of a save file. You should see a couple of folders which are named similar to the ones in the picture.  
 
The LoSe_xyz folders are the ones for L&S:Second Base.
[[File:Save file names.png|right|frameless|371x371px]]
[[File:Save file names.png|right|frameless|371x371px]]
After you choose the folder you need a save file from you have to locate the file by it's name in the folder (see the paragraph above on how the naming pattern works). On the right side you'll find an example on how those files look like in the save file location.
After you choose the folder you need a save file from you have to locate the file by it's name in the folder (see the paragraph above on how the naming pattern works). On the right side you'll find an example on how those files look like in the save file location.


Line 26: Line 31:


== Mac ==
== Mac ==
Your Ren'py save files on Mac can be found at this path: <code>~/Library/RenPy/</code>
To access the above path:
# Open up a Finder window
# Press <code>COMMAND</code> + <code>SHIFT</code> + <code>G</code>
# Paste/enter the path (<code>~/Library/RenPy</code>) into the text field and hit <code>Go</code>


==Linux==
==Linux==
On Linux, you can find your Ren'py save files in the following folder: <code>~/.renpy/</code>
==Android==
==Android==
On Android your save files can be found in <code>SD:/Android/data/com.andrealphusgames.loveandsexsecondbase</code>
== Weekly saves ==
As weekly builds can be really unstable, we choose to separate them completely (their saves too). [[File:Save file location renpy.png|right|frameless|375x375px]]If you want to use your save from the monthly release in the weekly release, you can copy the monthly save folder in the weekly save folder.
Weekly folders are the same as monthly folders listed above, they are just suffixed by "-weekly" .

Revision as of 04:08, 18 November 2022

Identifying the correct file

Identifying which save file you have to choose is relatively easy since the naming pattern for save files is always the same. This guide should also work with products which are not distributed by Andrealphus Games.

Locating the save file in game

The first thing that needs explanation is how the Renpy save file system works.

Pages: You'll notice the numbers on the bottom of your screen. Those are the page numbers. In Renpy games the save system is built so that you have 6 entries for each page. The amount of pages you can have is not limited, however Renpy games will always only show you the first nine pages. You can go beyond the ninth page, but beware that there is no more indication about which page you're currently on. In this example, it'll display the number of the page you're currently on in gray.

Save slots: The save slots above the page numbers are limited to 6 entries per page and are in a fixed order. It's always from the top left to bottom right and numbered from 1 to 6 (top left is 1 and bottom left is 4).

Save file name: The save file name is a combination of page number + save file slot. The first number of the save file name is always the Page number on which the save slot is located and the second number is the save slot itself.

In case of the picture you can see on the right side the name for the save file you're looking for would be: 6-1-LT1.save. This name pattern is the same for all platforms.

Save file location on your device

You would think that the save files for the game are saved in the normal game folder under game/saves, but that is only a local copy (only valid for the copy of the game the folder is in) of the actual save files which are located somewhere else.

Windows

To make sure that you have the correct save file you can use this command on Windows to navigate to the correct save file location: %appdata%\RenPy (you can copy and paste this into the Windows search). This command will bring you to the folder where all Renpy games save the most recent version of a save file. You should see a couple of folders which are named similar to the ones in the picture.

The LoSe_xyz folders are the ones for L&S:Second Base.


After you choose the folder you need a save file from you have to locate the file by it's name in the folder (see the paragraph above on how the naming pattern works). On the right side you'll find an example on how those files look like in the save file location.

Please only ever send us the unzipped save file. Don't send us the whole save file folder since we only need the specific save file where the error occurred on!

Mac

Your Ren'py save files on Mac can be found at this path: ~/Library/RenPy/

To access the above path:

  1. Open up a Finder window
  2. Press COMMAND + SHIFT + G
  3. Paste/enter the path (~/Library/RenPy) into the text field and hit Go

Linux

On Linux, you can find your Ren'py save files in the following folder: ~/.renpy/

Android

On Android your save files can be found in SD:/Android/data/com.andrealphusgames.loveandsexsecondbase

Weekly saves

As weekly builds can be really unstable, we choose to separate them completely (their saves too).

If you want to use your save from the monthly release in the weekly release, you can copy the monthly save folder in the weekly save folder.

Weekly folders are the same as monthly folders listed above, they are just suffixed by "-weekly" .