Advertisement
Guest User

Untitled

a guest
Mar 4th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. @echo off
  2. title CraftMundo :: Auth
  3. :Onload
  4. echo Insira o Usuario.
  5. set /p Usuario=User:
  6. cls
  7. echo Insira a Senha.
  8. set /p Senha=Pass:
  9. cls
  10. title CraftMundo :: Server
  11. echo Selecione o Servidor!
  12. echo +-------------------------------+
  13. echo 1 Hub
  14. echo 2 Survival
  15. echo +-------------------------------+
  16. set /p Servidor=Server:
  17. if %Servidor% equ 1 goto 1
  18. if %Servidor% equ 2 goto 2
  19.  
  20. :1
  21. cls
  22. title CraftMundo :: Hub
  23. java -jar console_remote.jar sv1.craftmundo.com.br:25564 %Usuario% %Senha%
  24. title CraftMundo :: Connection Lost.
  25. cls
  26. echo Server Offline Ou Usuario/Senha Incorretos. Reconectando.
  27. ping 8.8.8.8 -w 1 -n 3 > null
  28. rd null
  29. goto :1
  30. :2
  31. cls
  32. title CraftMundo :: Survival
  33. java -jar console_remote.jar sv1.craftmundo.com.br:25563 root guima480
  34. title CraftMundo :: Connection Lost.
  35. echo Server Offline Ou Usuario/Senha Incorretos. Reconectando.
  36. ping 8.8.8.8 -w 1 -n 3 > null
  37. rd null
  38. goto :2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement