Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: This is a script to restore minecraft.jar, very useful when a mod doesn't work!
- @echo off
- title Generic Minecraft Backup Tool v1 by MC77 - Currently Restoring
- echo Press any key to restore from back up.
- pause >nul
- echo This will delete your current minecraft.jar, are you SURE? This is your final warning.
- pause >nul
- cd "%appdata%/.minecraft\bin"
- echo Deleting old minecraft.jar ...
- del minecraft.jar >nul
- echo Done!
- echo Restoring from minecraft-backup.jar ...
- copy "minecraft-backup.jar" "minecraft.jar" >nul
- echo Done!
- echo All done! Press any key to exit.
- pause >nul
- :: Save as restore.bat and save anywhere.
Advertisement
Add Comment
Please, Sign In to add comment