Advertisement
Guest User

Untitled

a guest
May 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. @echo off
  2. title Atlas
  3. color f
  4. echo Welcome to atlas!
  5. echo " _____ __ .__ ";
  6. echo " / _ \_/ |_| | _____ ______";
  7. echo " / /_\ \ __\ | \__ \ / ___/";
  8. echo "/ | \ | | |__/ __ \_\___ \ ";
  9. echo "\____|__ /__| |____(____ /____ >";
  10. echo " \/ \/ \/ ";
  11. echo echo This game was created by xdJustice
  12. pause
  13. cls
  14. goto menu
  15.  
  16. :menu
  17. echo Atlas v0.1
  18. echo ------------------------
  19. echo Written In Windows Batch
  20. echo A Game By James Bayless
  21. echo A Text Based Adventure
  22. echo ------------------------
  23. echo This game isnt inented to
  24. echo be serious whatsoever
  25. echo ------------------------
  26. echo 1.) Play
  27. echo 2.) Quit
  28. set /p awnser=Enter Number:
  29. if %awnser%==1 goto Start
  30. if %awnser%==2 goto Quit
  31.  
  32. :Quit
  33. cls
  34. echo Are you sure you want to quit? Y/N
  35. set /p awnser=Enter Letter:
  36. if %awnser%==Y goto quit2
  37. if %awnser%==N goto menu
  38.  
  39. :quit2
  40. echo Thanks for playing!
  41. pause
  42.  
  43. :Start
  44. health = 100%
  45. armor = 0%
  46. hand = nothing currently
  47. cls
  48. echo August 27, 2462, Pluto Colony - We landed on pluto in hopes to setup a research colony
  49. echo but ended up getting the oppsoite of what we exptected. Turns out the SSU (Soviet Space Union)
  50. echo already landed here but the place looked like it was attacked. The windows
  51. echo where smashed in at every location and the airlocks look liked they were clawed in
  52. pause
  53. cls
  54. echo Space Pod #572
  55. echo ----------------------------------------------------------------------
  56. echo You wake up to the sound of screaming, you put your suit on and walk
  57. echo outside to see people being chased by creatures that look like soviets
  58. echo but are completly savage and are making groaning sounds
  59. echo ----------------------------------------------------------------------
  60. echo Health - %health%
  61. echo Armor = %armor%
  62. echo Main Hand = %hand%
  63. echo ----------------------------------------------------------------------
  64. echo 1.) Grab Rifle and Walk Outside
  65. echo 2.) Call For Help
  66. echo 3.) Run to your ship
  67. set /p awnser=Enter Number:
  68. if %awnser%==1 goto StartA
  69. if %awnser%==2 goto StartB
  70. if %awnser%==3 goto StartC
  71.  
  72. :StartB
  73. health = 50%
  74. cls
  75. echo Space Pod #572
  76. echo ------------------------------------------------
  77. echo You proceed to call for help.
  78. echo A Savage Soviet Sees You and runs
  79. echo at you will stalin painted in blood on his face
  80. echo He attacks you and you lose 50 health
  81. echo ------------------------------------------------
  82. echo Health = %health%
  83. echo Armor = %armor%
  84. echo Main Hand = %hand%
  85. echo ------------------------------------------------
  86. echo 1.) Accept Death
  87. set /p awnser=Enter Number:
  88. if %awnser%==1 goto DeathScene
  89. if %awnser%==2 goto DeathScene
  90. if %awnser%==3 goto DeathScene
  91. if %awnser%==one goto DeathScene
  92. if %awnser%==One goto DeathScene
  93. if %awnser%==ONE goto DeathScene
  94. if %awnser%==OnE goto DeathScene
  95.  
  96. :DeathScene
  97. cls
  98. echo Space Pod #572
  99. echo ---------------------
  100. echo He eats your face
  101. echo you die
  102. echo ----------------------
  103. echo 1.) restart
  104. set /p awnser=Enter Number:
  105. if %awnser%==1 goto Start
  106.  
  107. :StartC
  108. cls
  109. :StartA
  110. cls
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement