Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Check if the user is ready to play!
- confirm("Do you want to play a game?");
- var age = prompt("How old are you?");
- if (age < 18)
- {
- console.log("Okay, but I'm not responsible for you sillyness!");
- }
- else
- {
- console.log("Okay; have fun! ^_^");
- }
- 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.");
- console.log("Batman glares at you.");
- var userAnswer = prompt("Are you feeling lucky, punk?");
- if (userAnswer === "yes")
- {
- console.log("Batman hits you very hard. It's Batman and you're you! Of course Batman wins!");
- }
- else
- {
- 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.");
- }
- var feedback = prompt ("Did you like my game? Rate it from 1-10!");
- if (feedback >= 8)
- {
- console.log("This is just the beginning of my game empire. Stay tuned for more! C: ");
- }
- else
- {
- console.log("I slaved away at this game and you gave me that score?! The nerve! Just you wait! >:C");
- }
Advertisement
Add Comment
Please, Sign In to add comment