Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NpcTalk("Greetings Bwana.");
- NpcTalk("Ah I see you have the golden bowl !");
- NpcTalk("Would you like me to show you how to bless it?");
- int choice = showMenu(new String[] {"Yes, I'd like you to bless my gold bowl.", "No thanks, I need help with something elese."});
- if(choice == 0) {
- blessmybowl();
- } else if(choice == 1) {
- helpother();
- }
- }
- CASE 2:Fail private void blessmybowl() {
- TODO
- }
- }
- CASE 1: success private void blessmybowl() {
- SendMessage("Gujuo places the bowl on the floor in front of you,");
- SendMessage("and leads you into a deep meditation...");
- NpcTalk("Ohhhhhmmmmmm");
- PlayerTalk("Oooooommmmmmmmmm");
- NpcTalk("Ohhhhhmmmmmm");
- PlayerTalk("Oooooohhhhmmmmmmmmmm");
- NpcTalk("Ohhhhhmmmmmm");
- SendMessage("A totally peaceful aura surrounds you and you");
- SendMessage("bring down the blessings of your god on the bowl.");
- RemoveItem(1188, 1);
- RemoveItem(1189, 1);
- AddItem(1266, 1);
- NpcTalk("How goes your quest to release Ungadulu Bwana?
- int choice = showMenu(new String[] {"Ungadulu looks strange.", "I need to douse some flames with pure water.", "Ungadulu called me 'Vacu', what does that mean?", "Ok thanks for your help"});
- if(choice == 0) {
- strangeungad();
- } else if(choice == 1) {
- douseflames();
- } else if(choice == 2) {
- vacu();
- } else if(choice == 3) {
- thanksgujuo();
- }
- }
- private void helpother() {
- int choice = showMenu(new String[] {"Ungadulu looks strange.", "I need to douse some flames with pure water.", "Ungadulu called me 'Vacu', what does that mean?", "Ok thanks for your help"});
- if(choice == 0) {
- strangeungad();
- } else if(choice == 1) {
- douseflames();
- } else if(choice == 2) {
- vacu();
- } else if(choice == 3) {
- thanksgujuo();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment