Advertisement
Guest User

5fi64gu64

a guest
Aug 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. @echo off
  2. :start
  3. cls
  4. echo update 0.1 beta ||| whats new? 4 commands
  5. echo type help for help
  6. set /p command
  7. if %command% equ help goto help
  8. if %command% equ home goto start
  9. if %command% equ version goto version
  10. if %command% equ about goto about
  11. if %command% equ about goto start
  12. if %command% neq version goto start
  13. if %command% neq home goto start
  14. if %command% neq help goto start
  15.  
  16. :help
  17. cls
  18. echo press enter to exit
  19. echo list of commands
  20. echo help
  21. echo version
  22. echo home
  23. echo about
  24. echo more coming soon in 0.2 beta
  25. pause
  26. goto start
  27.  
  28. :version
  29. cls
  30. echo version 0.1
  31. echo beta
  32. echo press enter to go to home screen
  33. pause
  34. goto start
  35.  
  36. :about
  37. cls
  38. echo by : joshua
  39. echo produced by : 22
  40. echo produced by : fyre
  41. echo inspired by : windows
  42. echo inspired by : abuntu
  43. echo press enter to go to home screen
  44. pause
  45. goto start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement