Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Latest commit

 

History

History
12 lines (11 loc) · 243 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 243 Bytes

Mindustry Progressive Backup

Backup your save every 5 minutes. Windows

Batch Code

  • Run it in %appdata%\mindustry\.
@echo off
:loop
xcopy /E saves "saves_%date:/=_%\saves_%time::=.%\"
timeout /t 300 /nobreak > NUL
goto loop