Advertisement
LeeTheENTP

Portable Minecraft Launcher Source Code

Dec 23rd, 2017
3,708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. @echo off
  2. echo.
  3. echo.
  4. echo.
  5. echo.
  6. echo.
  7. echo.
  8. echo.
  9. echo.
  10. echo.
  11. echo.
  12. echo.
  13. echo =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  14. echo Portable Minecraft Launcher by Lee Neighoff AKA LeeTheENTP
  15. echo Brought to you by Murica Gaming. www.muricagaming.com
  16. echo =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  17. if not exist "%CD%\GameData\AppData\.minecraft" mkdir "%CD%\GameData\AppData\.minecraft"
  18. if not exist "%CD%\GameData\Minecraft" mkdir "%CD%\GameData\Minecraft"
  19. if not exist "%CD%\GameData\Minecraft\Minecraft.exe" goto download
  20.  
  21. :launch
  22. color 0a
  23. echo Minecraft has been downloaded! It is located in GameData\Minecraft.
  24. echo Launching...
  25. timeout /t 3 /nobreak > NUL
  26. start "Minecraft" "%CD%\GameData\Minecraft\Minecraft.exe" --workDir "%CD%\GameData\AppData\.minecraft"
  27. goto end
  28.  
  29. :download
  30. color 0c
  31. echo Minecraft launcher not found! Downloading...
  32. timeout /t 3 /nobreak > NUL
  33. powershell "Import-Module BitsTransfer; Start-BitsTransfer 'https://launcher.mojang.com/download/Minecraft.exe' '%CD%\GameData\Minecraft\Minecraft.exe'"
  34. powershell "Import-Module BitsTransfer; Start-BitsTransfer 'https://s3.amazonaws.com/murica-gaming-downloads/servers.dat' '%CD%\GameData\AppData\.minecraft\servers.dat'"
  35. goto launch
  36.  
  37. :end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement