Advertisement
12Me21

AEAAG

Jun 4th, 2017
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QBasic 0.42 KB | None | 0 0
  1. 1 PRINT "Welcome to the Awesome Epic Amazing Adventure Game!"
  2. INPUT "What is your name? ", NAME$
  3. PRINT "You Died."
  4. PRINT
  5.  
  6. 2 INPUT "Do you want to play again? ", again$
  7. IF again$ = "Yes" OR again$ = "yes" OR again$ = "YES" THEN
  8.     PRINT
  9.  
  10.     GOTO 1
  11. ELSEIF again$ = "No" OR again$ = "no" OR again$ = "NO" THEN
  12.     PRINT "Yes you do!"
  13.     PRINT
  14.  
  15.     GOTO 1
  16. ELSE
  17.     PRINT "You Died."
  18.     PRINT
  19.  
  20.     GOTO 2
  21. END IF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement