Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. @ECHO off
  2. title ForgeCraft 2 Updater
  3.  
  4.  
  5. echo Deleting ALL THE THINGS ;)
  6. ::Removing Old stuff
  7. rmdir /S /Q "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\mods"
  8. rmdir /S /Q "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\config"
  9.  
  10. :: New Stuff Here
  11. :: Makes the Mods Directories again
  12. mkdir "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\mods"
  13. mkdir "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\config"
  14.  
  15.  
  16. :: Copies the mods across Syntax is Xcopy <Source> <Destination>
  17. Xcopy /S /y /I "D:\Seafile\instances\ForgeCraft2\mods" "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\mods"
  18. Xcopy /y /I "D:\Seafile\instances\ForgeCraft2\config" "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\config"
  19. Xcopy /y /I "D:\Seafile\instances\ForgeCraft2\clientmods" "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\mods"
  20. :: Optional To copy the ScreenShots to your Photo's directory Comment out with ::
  21. mcdir "C:\Users\Scott\Pictures\MC Screen Shots"
  22. Xcopy /y "C:\Minecraft\MultiMC\instances\Forgecraft 2\minecraft\screenshots" "C:\Users\Scott\Pictures\MC Screen Shots"
  23.  
  24.  
  25. :: Starts MultiMC
  26. START "" "C:\Minecraft\MultiMC\MultiMC.exe"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement