GL1TCH3D

Monster Hunter Rise Backup

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