A simple tool that allows you to save your Balatro game at any point, and load it again later.
- Hit "Save" whenever you want to save your current run in the selected profile.
- Check "Auto save" if you want the current profile to be saved every X minutes.
- All Saves show up in the list
- To load a save file:
- In Balatro: go to the main menu (you need to exit your current run)
- Select the save file in the list, and click "Load". WARNING! Your current run in Balatro will be overwritten!
- In Balatro: continue your current run, it will be the one you just loaded.
Download the latest release here: https://github.com/papauschek/balatro-save-load/releases/tag/v1.1.0
This project is automatically built using GitHub Actions. You can find the latest build artifact by following these steps:
- Go to the Actions tab in this repository.
- Click on the latest "Build WPF app" workflow run.
- Scroll down to the "Artifacts" section.
- Download the "BalatroSaveAndLoad" artifact.
The artifact contains the latest executable build of the application.
To build this project locally:
- Ensure you have .NET 8.0 SDK installed.
- Clone this repository.
- Open a terminal in the project directory.
- Run the following commands:
dotnet restore BalatroSaveAndLoad/BalatroSaveAndLoad.csproj
dotnet build BalatroSaveAndLoad/BalatroSaveAndLoad.csproj --configuration Release
dotnet publish BalatroSaveAndLoad/BalatroSaveAndLoad.csproj -c Release -o publish --self-contained true -r win-x64 /p:PublishSingleFile=true
- The built executable will be in the
publish
directory.