Guest User

Untitled

a guest
Feb 21st, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. :: This is a script to restore minecraft.jar, very useful when a mod doesn't work!
  2.  
  3. @echo off
  4. title Generic Minecraft Backup Tool v1 by MC77 - Currently Restoring
  5. echo Press any key to restore from back up.
  6. pause >nul
  7. echo This will delete your current minecraft.jar, are you SURE? This is your final warning.
  8. pause >nul
  9. cd "%appdata%/.minecraft\bin"
  10. echo Deleting old minecraft.jar ...
  11. del minecraft.jar >nul
  12. echo Done!
  13. echo Restoring from minecraft-backup.jar ...
  14. copy "minecraft-backup.jar" "minecraft.jar" >nul
  15. echo Done!
  16. echo All done! Press any key to exit.
  17. pause >nul
  18.  
  19. :: Save as restore.bat and save anywhere.
Advertisement
Add Comment
Please, Sign In to add comment