Guest User

Untitled

a guest
Jan 17th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. @echo off
  2. title Minecraft Name Changer - pRornxxx
  3. color A1
  4. goto part1
  5.  
  6. :ERROR2
  7. cls
  8. @echo You must write in a name!deepsmitchell
  9. pause
  10. cls
  11. goto part1
  12.  
  13. :ERROR
  14. cls
  15. @echo You must type in y(Yes) or n(No)!y
  16. pause
  17. cls
  18. goto part1
  19.  
  20. :part1
  21. cls
  22. set /p NAME=Choose your new awesome Minecraft name:Batman007
  23. if "%NAME%"=="" (GOTO ERROR2)
  24. cls
  25. @echo You wrote: %NAME%
  26. set /p confirm=Are you sure you want this name[y/n]?:y
  27. if "%confirm%"=="n" (GOTO part1)y
  28. if "%confirm%"=="y" (GOTO part2) else (GOTO ERROR)
  29.  
  30. :part2
  31. cls
  32. @echo Starting minecraft, %NAME%! :D
  33. @echo.
  34. REM Change the RAM settings if you want to
  35. java -Xms512m -Xmx1024m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%NAME%"
Add Comment
Please, Sign In to add comment