Sync your Satisfactory save files between multiple players
Satisfactory Save Sync is a tool that allows you to sync your save files between multiple players. It is designed to be used with the Steam version of the game, and is an temporary alternative using dedicated servers.
This app tampers with your save files, and can cause data loss. Use at your own risk. It does create backups of your save files locally, but it is recommended to manually backup your save files before using this app. Neither Ficsit Inc. nor I am responsible for any data loss caused by this app.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- GitHub account
- Git installed on your machine, and configured with your GitHub account
- Write access to the repository, (fork it to create your own synced repository )
- Satisfactory installed on your machine (Steam version)
This will clear all existing save files in the repository, and create a new sync group. This is irreversible, and will cause data loss. Use with caution. It won't delete any save files from your game.
-
Fork this repository to your account here: Fork
-
Clone the repository to your local machine
-
Make sure you give write access to the repository to all the players you want to sync with
-
Run the following command in powershell
.\app.ps1 setup
-
Enter Game ID (for satisfactory, it is
526870
) -
Enter the path to your save files (example:
C:\Users\<UserName>\AppData\Local\FactoryGame\Saved\SaveGames\<UserID>
) -
NOTE: The path should be absolute, and should not have aliases like
%LOCALAPPDATA%
-
Add regex patterns for save files to sync (example:
^Autosave
,^1\.0.*
)
The script will copy all save files from the specified path to the repository, and commit and push them.
-
Clone the repository to your local machine
-
Make sure you give write access to the repository
-
Set your save files path using:
.\app.ps1 set-save-path
-
Enter the path to your save files (example:
C:\Users\<UserName>\AppData\Local\FactoryGame\Saved\SaveGames\<UserID>
) -
NOTE: The path should be absolute, and should not have aliases like
%LOCALAPPDATA%
-
To sync your save files, run the following command in powershell:
.\sync.ps1
-
To run the game, with automatically syncing save files, run the following command in powershell:
.\run.ps1
-
To create a desktop shortcut to run game with sync, or just sync save files, run the following command in powershell:
.\app.ps1 create-shortcuts
Too lazy to write this