Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. //Check if the user is ready to play!
  2. confirm("I am ready to play");
  3. var age = prompt("What is your age?");
  4. if (age < 18)
  5. {
  6. console.log("You can play but i take no responsibility");
  7. }
  8. else {
  9. console.log("go ahead and play!");
  10. }
  11. console.log("Snow White and Batman were hanging out at the bus stop, waiting to go to the shops. There was a sale on and both needed some new threads. You've never really liked Batman. You walk up to him.");
  12. console.log("Batman glares at you");
  13. var userAnswer = prompt("Are you feeling lucky, punk?");
  14. if (userAnswer === "yes")
  15. {
  16. console.log("Batman hits you very hard. It's Batman and you're you! Of course Batman wins!");
  17. }
  18. else {
  19. console.log("You did not say yes to feeling lucky. Good choice! You are a winner in the game of not getting beaten up by Batman.");
  20. }
  21. var feedback = prompt("Please rate this game to help me make it better");
  22. if (feedback > 8)
  23. {
  24. console.log("This is just the beginning of my game empire. Stay tuned for more!");
  25. }
  26. else {
  27. console.log("I slaved away at this game and you gave me that score?! The nerve! Just you wait!");
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement