I wrote a Batchscript to not overwrite your autosaves.

Users who are viewing this thread

I was annoyed after crash 1001 that I couldn't revert further back because the auto_save has been overwritten. I made a hacky solution for this with a batch file that renames the auto_save file every minute to the current time.

code:
@Echo off
:loop
if exist save_auto.sav (
ren "save_auto.sav" "save_auto - %date:/=-% %time::=-%.sav"
echo renamed file
) else (
echo did not rename, file did not exist
)
timeout /t 60
goto loop
@pause

You can make your own batchfile with this or download the pre-made file.
https://gofile.io/?c=7Uclaf

Instructions:
1. Put this file in C:\Users\YOURNAME\Documents\Mount and Blade II Bannerlord\Game Saves\Native
2. When you start up bannerlord SP start up this file, this should open a command prompt that starts running the script.
3. You don't have to do anything else, everytime an autosave is made this file renames it to the current time/date.

Hope this helps!
 
Back
Top Bottom