Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- ::Replace the following path with the path to your own savegame (works with other games)
- Set Save=
- ::The following line checks if a folder specific for the backups exists.
- ::You can replace MHRBackup with another directory as long as it only stores backups for a specific game.
- if not exist MHRBackup mkdir MHRBackup & cd MHRBackup & goto backup
- cd MHRBackup
- :BACKUP
- ::Backup only if differences are found. Month-day-year-hour-minute format.
- set FILENAME=MHR_Save_%date:~4,2%-%date:~7,2%-%date:~10,4%_%time:~0,2%-%time:~3,2%
- mkdir temp
- copy /Y /V "%Save%" "%cd%\temp" >nul
- ren temp %FILENAME%
- :END
- ::Can change the timer by adjusting the 3600 number. Current is 1 hour.
- ::Can be manually skipped by any keypress.
- Timeout /T 3600
- cls
- Goto BACKUP
Advertisement
Add Comment
Please, Sign In to add comment