An automatic quicksave utility for Starfield that helps prevent lost progress and manages your save files.
- Automatic Quicksaving: Creates quicksaves at configurable intervals while playing.
- Save Conversion: Automatically converts quicksaves and autosaves to regular saves.
- Save Management: Intelligently prunes old saves while preserving one save per day.
- Non-Intrusive: Only runs when Starfield is active and in focus.
- Audio Feedback: Optional sound notifications for save events.
- Configurable: Easy to customize via config file.
- Download the latest release from the Releases page
- Extract to a location of your choice
- Run
starfieldsaver.exe
The first time you run the application, it will create a starfieldsaver.toml
default configuration file.
Configuration is stored in starfieldsaver.toml
in the application directory. You can modify this file directly or through the application interface.
[paths]
save_dir = "C:\\Users\\YourUsername\\Documents\\My Games\\Starfield\\Saves"
game_exe = "Starfield.exe"
[saves]
enable_quicksave = true
check_interval = 10
quicksave_every = 240
copy_to_regular_save = true
enable_success_sounds = true
[cleanup]
prune_older_than_days = 0
dry_run = true
[logging]
enable_debug = false
save_dir
: Directory where Starfield saves are stored.game_exe
: Name of the game process to monitor (with or without .exe).
IMPORTANT: In TOML, backslashes are escape characters. You can either use forward slashes (C:/Users/YourName
) or double backslashes (C:\\Users\\YourName
), but not single backslashes.
enable_quicksave
: Whether to enable automatic quicksaving (true/false).check_interval
: How often to check game status in seconds.quicksave_every
: Time between automatic quicksaves in seconds (default: 4 minutes).copy_to_regular_save
: Whether to copy quicksaves to regular saves (true/false).enable_success_sounds
: Whether to play sound notifications for successful saves (true/false). Note that error sounds will always play.
prune_older_than_days
: Number of days before pruning saves to one per day (0 to disable)dry_run
: Test cleanup without deleting files (true/false)
enable_debug
: Enable detailed debug logging (true/false)
- The utility monitors your game session and automatically creates quicksaves at your configured interval.
- When a quicksave or autosave is detected, it's copied to a regular save with proper naming.
- The utility only runs when Starfield is in focus to avoid interfering with other applications.
- Old saves can be automatically cleaned up, keeping one save per day for saves older than your configured threshold.
When enabled, the save cleanup feature:
- Preserves all saves newer than the specified number of days.
- For older saves, keeps one save per day per character.
- Always preserves your most recent saves.
- Can run in "dry run" mode to show what would be deleted without actually removing files.
The utility provides audio feedback for successful saves, manual quicksaves detected, and if an error occurs.
- Success sound: When a save is successfully created.
- Notification sound: When a manual quicksave is detected.
- Error sound: If an error occurs.
You can use the enable_success_sounds
config option to disable success and notification sounds to avoid disrupting your immersion.
NOTE: Error sounds will always play, so you'll know when something has gone wrong and your game may not have saved correctly.