Advertisement
xrune

Aubury (stage 2)

Apr 1st, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. NpcTalk("Do you want to buy some runes?");
  2. int choice = showMenu(new String[] {"Yes please!", "Oh, it's a rune shop. No thank you, then.", "I have been sent here with a package for you."});
  3. if(choice == 0) {
  4. yesplz();
  5. } else if(choice == 1) {
  6. ohrune();
  7. } else if(choice == 2) {
  8. package();
  9. }
  10. }
  11. private void yesplz() {
  12. ---------------------Store screen-------------------
  13. }
  14. }
  15. private void ohrune() {
  16. NpcTalk("Well, if you find someone who does want runes,");
  17. NpcTalk("please send them my way.");
  18. }
  19. }
  20. private void package() {
  21. PlayerTalk("It's from the head wizard at the Wizards' Tower");
  22. NpcTalk("Really? But... surely he cant have..?");
  23. NpcTalk("Please, let me have it, it must be extremely important");
  24. NpcTalk("for him to have sent a stranger.");
  25. PlayerTalk("Uh... yeah... about that... I kind of don't have it with me...");
  26. NpcTalk("What kind of person tells me they have a delivery for me,");
  27. NpcTalk("but not with them? Honestly.");
  28. NpcTalk("Come back when you do.");
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement