Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NpcTalk("Do you want to buy some runes?");
- 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."});
- if(choice == 0) {
- yesplz();
- } else if(choice == 1) {
- ohrune();
- } else if(choice == 2) {
- package();
- }
- }
- private void yesplz() {
- ---------------------Store screen-------------------
- }
- }
- private void ohrune() {
- NpcTalk("Well, if you find someone who does want runes,");
- NpcTalk("please send them my way.");
- }
- }
- private void package() {
- PlayerTalk("It's from the head wizard at the Wizards' Tower");
- NpcTalk("Really? But... surely he cant have..?");
- NpcTalk("Please, let me have it, it must be extremely important");
- NpcTalk("for him to have sent a stranger.");
- SendMessage("You hand Aubury the research package");
- RemoveItem("research package");
- NpcTalk("This... this is incredible. Please, give me a few moments");
- NpcTalk("to quickly look over this, and then talk to me again.");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment