Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. @echo off
  2. color f7
  3. echo _ _ _ _ ____ _____ __ __ ______ _____
  4. echo l l l l \ l l/ __ \ / ____l /\ l \/ l ____l/ ____l
  5. echo l l l l \l l l l l l l __ / \ l \ / l l__ l (___
  6. echo l l l l . ` l l l l l l l_ l / /\ \ l l\/l l __l \___ \
  7. echo l l__l l l\ l l__l l l l__l l/ ____ \l l l l l____ ____) l
  8. echo \____/l_l \_l\____/ \_____/_/ \_\_l l_l______l_____/
  9. echo We are the number one game company for batch!
  10. pause
  11. goto gamelogo
  12.  
  13.  
  14. :gamelogo
  15. cls
  16. echo _ __ _ _ _ _ ___ _ _
  17. echo I I/ /_ _ (_)__ _I I_I I_( )___ / _ \ _ _ ___ __I I_(_)
  18. echo I ' <I ' \I / _` I ' \ _I/(_-< I (_) I II / -_I_-< _I_
  19. echo I_I\_\_II_I_\__, I_II_\__I /__/ \__\_\\_,_\___/__/\__(_)
  20. echo I___/
  21. echo _____ _ _
  22. echo I_ _I I_ ___ _ I I___ _ _ _ _ _ _ ___ _ _
  23. echo I I I ' \/ -_) I II / _ \ II I '_I ' \/ -_) II I
  24. echo I_I I_II_\___I \__/\___/\_,_I_I I_II_\___I\_, I
  25. echo I__/
  26. echo _ ___ _ __ _
  27. echo I I_ ___ I __I I/ _(_)__ _
  28. echo I _/ _ \ I _II I _I / _` I
  29. echo \__\___/ I___I_I_I I_\__,_I
  30. echo Revision 1
  31. pause
  32. goto title
  33.  
  34.  
  35. :title
  36. cls
  37. echo Type "register" to make your login.
  38. echo Type "login" to login and start your adventure.
  39. echo Type "quit" to exit the game.
  40. set /p title=
  41. if %title% == register goto register
  42. if %title% == login goto login
  43. if %title% == quit goto quit
  44.  
  45.  
  46. :register
  47. cls
  48. set /p newps=Please enter your new password:
  49. echo %newps% > user.txt
  50. goto title
  51.  
  52.  
  53. :login
  54. cls
  55. set /p logps=Please enter your password:
  56.  
  57. for /f "Delims=" %%a in (user.txt) do (
  58.  
  59. set text=%%a
  60.  
  61. )
  62.  
  63. if %logps% == %text% goto start
  64. echo Sorry, wrong password.
  65. ping localhost -n 2 >nul
  66. goto title
  67.  
  68.  
  69. :exit
  70. cls
  71. echo Thanks for playing.
  72. pause
  73. exit
  74.  
  75.  
  76. :start
  77. cls
  78. echo A long time ago... There were 3 central kingdoms.
  79. echo Elfia, Humania, and Orcia.
  80. echo All of these kingdoms lived in peace until
  81. echo disaster struck. Elfia was lost and some
  82. echo brave adventurers decided that this was enough.
  83. echo They were you.
  84. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement