Created
November 13, 2020 23:53
-
-
Save AntonioCS/9686ae83b52721ea8fc4afbc6b2b9854 to your computer and use it in GitHub Desktop.
A basic bat to load a Dark Souls 3 save file and then run DarkSouls 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set DS3_MAIN_PROGRAM=C:\\Program Files (x86)\\Steam\\steamapps\\common\\DARK SOULS III\\Game\\DarkSoulsIII.exe | |
set DS3_save_dir=%appdata%\DarkSoulsIII\\<YOUR_STEAM_ID> | |
set DS3_backups_dir=<DIRECTORY_OF_THE_SAVE_FILE> | |
set DS3_original_filename=DS30000.sl2 | |
set DS3_backup_filename=<NAME_OF_BACKUP_FILE_TO_LOAD_NAME> | |
copy "%DS3_backups_dir%\\%DS3_backup_filename%" "%DS3_save_dir%\\%DS3_original_filename%" | |
"%DS3_MAIN_PROGRAM%" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment