dsun

Untitled

Nov 8th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. System.out.println("\nYou wake up laying in a bed.\n");
  2. Thread.sleep(2500);
  3. System.out.println("Ellie: Hey, are you okay?");
  4. Thread.sleep(2000);
  5. System.out.println("Ellie: What is your name?");
  6. System.out.print("Enter your name: ");
  7. name = s.nextLine();
  8. System.out.println("Ellie: " + name + ", huh? I see.");
  9. Thread.sleep(2000);
  10. System.out.println("Ellie: My name is Ellie. Nice to meet you.");
  11. Thread.sleep(2500);
  12. System.out.println(name + ": What is going on? Why am I here? Ow, my head hurts!");
  13. Thread.sleep(3000);
  14. System.out.println("Ellie: I found you unconscious in a forest. I brought you here.");
  15. Thread.sleep(3000);
  16. System.out.println(name + ": I can't remember anything besides my name.");
  17. Thread.sleep(2700);
  18. System.out.println("Ellie: That's quite odd.");
  19. Thread.sleep(2000);
  20. System.out.println(name + ": Well, thank you for taking care of me. I will be leaving now.");
  21. Thread.sleep(3000);
  22. System.out.println("Ellie: Okay, please come back if you need anything.");
  23. Thread.sleep(3000);
  24. elliesHome();
Advertisement
Add Comment
Please, Sign In to add comment