Thread: [PI] need help with a custom quest

Results 1 to 2 of 2
  1. #1 [PI] need help with a custom quest 
    Registered Member
    Join Date
    Aug 2010
    Posts
    115
    Thanks given
    1
    Thanks received
    3
    Rep Power
    26
    I am making a custom quest where the player talks to the npc, and the npc generates a random item and amount to get of that item. there will be three stages and on level 1 you get easy item then are asked if you want to continue to stage 2 and repeat for stage 3. reward is also a random reward, with reward for each stage being better. well here is my problem...

    When i click the Npc the first chat goes well... but then when i click for the second chat i get in error in server cmd
    Code:
    [2/26/12 11:06 AM]: Admin - actionbutton: 9157
    [2/26/12 11:06 AM]: Exception in thread "main" [2/26/12 11:06 AM]: java.lang.Exc
    eptionInInitializerError
    [2/26/12 11:06 AM]:     at server.model.players.DialogueHandler.sendDialogues(Di
    alogueHandler.java:198)
    [2/26/12 11:06 AM]:     at server.model.players.packets.ClickingButtons.processP
    acket(ClickingButtons.java:1004)
    [2/26/12 11:06 AM]:     at server.model.players.PacketHandler.processPacket(Pack
    etHandler.java:138)
    [2/26/12 11:06 AM]:     at server.model.players.Client.processQueuedPackets(Clie
    nt.java:1384)
    [2/26/12 11:06 AM]:     at server.model.players.PlayerHandler.process(PlayerHand
    ler.java:136)
    [2/26/12 11:06 AM]:     at server.Server.main(Server.java:164)
    [2/26/12 11:06 AM]: Caused by: java.lang.ArrayIndexOutOfBoundsException: 3
    [2/26/12 11:06 AM]:     at server.model.players.quests.luckQuest.<clinit>(luckQu
    est.java:24)
    [2/26/12 11:06 AM]:     ... 6 more
    and i get disconnected from server and have to restart server. here are my files

    luckQuest.java (my custom quest)
    Spoiler for Show:
    Code:
    package server.model.players.quests;
    
    import server.model.items.Item;
    import server.Server;
    import server.model.players.Client;
    import server.util.Misc;
    
    public class luckQuest {
    
    
    	public static int[][] rewardItems = {
    		
    		{995, 386},
    		{995, 386, 4151, 535, 537, 1378, 4588, 9244},
    		{2435, 995, 2581, 9244, 3025, 4152, 4213, 4753, 4745, 4709, 4716, 4724, 4732, 4740, 11235, 11212}
    	};
    	public static int[][] itemToGet = {
    		{1512, 1518, 1522, 437, 441, 454, 378},
    		{2360, 2354, 67}, 
    		{116, 230, 995, 527, 844}
    	};
    	public static int level1 = itemToGet[1][Misc.random(7)];
    	public static int level2 = itemToGet[2][Misc.random(3)];
    	public static int level3 = itemToGet[3][Misc.random(5)];
    	public static int value5 = 0;
    	
    	
    	 public static int amountNeeded(Client c) {
    			if (c.luckQuest == 1) {
    				switch(level1){
    				case 1512:
    				case 1518:
    				case 1522:
    				case 437:
    				case 441:
    				case 454:
    				case 378:
    					value5 = 40;
    				break;
    				}
    			} else if (c.luckQuest == 2) {
    				switch(level2) {
    				case 2360:
    					value5 = 20;
    				break;
    				case 2354:
    					value5 = 30;
    				break;
    				case 67:
    					value5 = 50;
    				break;
    				}
    			} else if (c.luckQuest == 3) {
    				switch(level3){
    				case 116:
    					value5 = 20;
    				break;
    				case 230:
    					value5 = 60;
    				break;
    				case 995:
    					value5 = 100000;
    				break;
    				case 527:
    					value5 = 50;
    				break;
    				case 844:
    					value5 = 30;
    				break;
    				}
    			}
    			return value5;
    	}
    	 public static void rewardPlayer(Client c) {
    		int reward1 = rewardItems[1][Misc.random(2)];
    		int reward2 = rewardItems[2][Misc.random(8)];
    		int reward3 = rewardItems[3][Misc.random(16)];
    		if (c.luckQuest == 1) {
    			if (reward1 == 995) {
    				c.getItems().addItem(995, Misc.random(500000));
    			} else if (reward1 == 386) {
    				c.getItems().addItem(386, Misc.random(500));
    			}
    		//reward2 {995, 386, 4151, 535, 537, 1378, 4588, 9244},
    		} else if (c.luckQuest == 2) {
    			switch(reward2) {
    				case 995:
    				c.getItems().addItem(995, Misc.random(1000000));
    				break;
    				case 386:
    				c.getItems().addItem(386, Misc.random(1000));
    				break;
    				case 4151:
    				c.getItems().addItem(4151, 1);
    				break;
    				case 535:
    				c.getItems().addItem(535, Misc.random(200));
    				break;
    				case 537:
    				c.getItems().addItem(537, Misc.random(100));
    				break;
    				case 1378:
    				c.getItems().addItem(1378, Misc.random(5));
    				break;
    				case 4588:
    				c.getItems().addItem(4588, Misc.random(10));
    				break;
    				case 9244:
    				c.getItems().addItem(9244, Misc.random(1000));
    				break;
    				
    			}
    		//reward3 {2435, 995, 2581, 9244, 3025, 4152, 4213, 4753, 4745, 4709, 4716, 4724, 4732, 4740, 11235, 11212}
    		} else if (c.luckQuest == 3) {
    			switch(reward3) {
    				case 995:
    				c.getItems().addItem(995, Misc.random(3000000));
    				break;
    				case 2435:
    				c.getItems().addItem(2435, Misc.random(500));
    				break;
    				case 2581:
    				c.getItems().addItem(2581, 1);
    				break;
    				case 9244:
    				c.getItems().addItem(9244, Misc.random(1000));
    				break;
    				case 3025:
    				c.getItems().addItem(3025, Misc.random(1000));
    				break;
    				case 4152:
    				c.getItems().addItem(4152, Misc.random(2));
    				break;
    				case 4213:
    				c.getItems().addItem(4213, Misc.random(2));
    				break;
    				case 4753:
    				c.getItems().addItem(4753, Misc.random(1));
    				break;
    				case 4745:
    				c.getItems().addItem(4745, Misc.random(1));
    				break;
    				case 4709:
    				c.getItems().addItem(4709, Misc.random(1));
    				break;
    				case 4716:
    				c.getItems().addItem(4716, 1);
    				break;
    				case 4724:
    				c.getItems().addItem(4724, Misc.random(1));
    				break;
    				case 4732:
    				c.getItems().addItem(4732, Misc.random(1));
    				break;
    				case 4740:
    				c.getItems().addItem(4740, Misc.random(1000));
    				break;
    				case 11235:
    				c.getItems().addItem(11235, Misc.random(1));
    				break;
    				case 11212:
    				c.getItems().addItem(11212, Misc.random(100));
    				break;
    			}
    		}
    		
    	}
    	public static void showQuest(Client c) {
    		
    		for (int i = 8144; i < 8195; i++) {
    			c.getPA().sendFrame126("", i);
    		}
    			c.getPA().sendFrame126("Luck Quest", 8144);
    			c.getPA().sendFrame126("", 8145);
    			if (c.luckQuest == 0) {
    				c.getPA().sendFrame126("To start this quest I must first speak with", 8147);
    				c.getPA().sendFrame126("The farmer in the gamblers lounge.", 8148);
    			} else if (c.luckQuest == 1) {
    				c.getPA().sendFrame126("@GRE@To start this quest I must first speak with", 8147);
    				c.getPA().sendFrame126("@GRE@The farmer in the gamblers lounge.", 8148);
    				c.getPA().sendFrame126("I need to find " + amountNeeded(c) + " of " + Item.getItemName(level1) + "?", 8149);
    			} else if (c.luckQuest == 2) {
    				c.getPA().sendFrame126("@GRE@To start this quest I must first speak with", 8147);
    				c.getPA().sendFrame126("@GRE@The farmer in the gamblers lounge.", 8148);
    				c.getPA().sendFrame126("I need to find " + amountNeeded(c) + " of " + Item.getItemName(level2) + "?", 8149);
    			} else if (c.luckQuest == 3) {
    				c.getPA().sendFrame126("@GRE@To start this quest I must first speak with", 8147);
    				c.getPA().sendFrame126("@GRE@The farmer in the gamblers lounge.", 8148);
    				c.getPA().sendFrame126("I need to find " + amountNeeded(c) + " of " + Item.getItemName(level3) + "?", 8149);
    			}
    			c.getPA().showInterface(8134);
    		}
    		
    		
    }



    dialoguehandler.java
    Spoiler for Show:
    Code:
    package server.model.players;
    
    import server.model.players.quests.luckQuest;
    import server.model.items.Item;
    
    public class DialogueHandler {
    
    	public Client c;
    	
    	public DialogueHandler(Client client) {
    		this.c = client;
    	}
    	
    	/**
    	 * Handles all talking
    	 * @param dialogue The dialogue you want to use
    	 * @param npcId The npc id that the chat will focus on during the chat
    	 */
    	public void sendDialogues(int dialogue, int npcId) {
    		c.talkingNpc = npcId;
    		switch(dialogue) {
    		case 0:
    			c.talkingNpc = -1;
    			c.getPA().removeAllWindows();
    			c.nextChat = 0;
    			break;
    		case 1:
    			sendStatement("You found a hidden tunnel! Do you want to enter it?");
    			c.dialogueAction = 1;
    			c.nextChat = 2;
    			break;
    		case 2:
    			sendOption2("Yea! I'm fearless!",  "No way! That looks scary!");
    			c.dialogueAction = 1;
    			c.nextChat = 0;
    			break;
    		case 3:
    			sendNpcChat4("Hello!", "My name is Duradel and I am a master of the slayer skill.", "I can assign you a slayer task suitable to your combat level.", 
    			"Would you like a slayer task?", c.talkingNpc, "Duradel");
    			c.nextChat = 4;
    		break;
    		case 5:
    			sendNpcChat4("Hello adventurer...", "My name is Kolodion, the master of this mage bank.", "Would you like to play a minigame in order ", 
    						"to earn points towards recieving magic related prizes?", c.talkingNpc, "Kolodion");
    			c.nextChat = 6;
    		break;
    		case 6:
    			sendNpcChat4("The way the game works is as follows...", "You will be teleported to the wilderness,", 
    			"You must kill mages to recieve points,","redeem points with the chamber guardian.", c.talkingNpc, "Kolodion");
    			c.nextChat = 15;
    		break;
    		case 11:
    			sendNpcChat4("Hello!", "My name is Duradel and I am a master of the slayer skill.", "I can assign you a slayer task suitable to your combat level.", 
    			"Would you like a slayer task?", c.talkingNpc, "Duradel");
    			c.nextChat = 12;
    		break;
    		case 12:
    			sendOption2("Yes I would like a slayer task.", "No I would not like a slayer task.");
    			c.dialogueAction = 5;
    		break;
    		case 13:
    			sendNpcChat4("Hello!", "My name is Duradel and I am a master of the slayer skill.", "I see I have already assigned you a task to complete.", 
    			"Would you like me to give you an easier task?", c.talkingNpc, "Duradel");
    			c.nextChat = 14;
    		break;
    		case 14:
    			sendOption2("Yes I would like an easier task.", "No I would like to keep my task.");
    			c.dialogueAction = 6;
    		break;
    		case 15:
    			sendOption2("Yes I would like to play", "No, sounds too dangerous for me.");
    			c.dialogueAction = 7;
    		break;
    		case 16:
    			sendOption2("I would like to fix all my barrows.", "Cancel");
    			c.dialogueAction = 8;
    		break;
    		case 17:
    			sendOption5("Air", "Mind", "Water", "Earth", "Runecrafting Shop");
    			c.dialogueAction = 10;
    			c.nextChat =18;
    		break;
    		case 18:
    			sendOption5("Fire", "Body", "Cosmic", "Astral", "Runecrafting Shop");
    			c.dialogueAction = 11;
    			c.nextChat =19;
    		break;
    		case 19:
    			sendOption5("Nature", "Law", "Death", "Blood", "Runecrafting Shop");
    			c.dialogueAction = 12;
    			c.nextChat =17;
    		break;
    		case 20:
    			sendNpcChat1("Would you like to ride the flying carpet for 200 gold?", c.talkingNpc, "Rug Merchant");
    			c.nextChat = 21;
    		break;
    		case 21:
    			sendOption2("Yes",  "No");
    			c.dialogueAction = 13;
    		break;
    		case 22:
    			sendNpcChat1("You currently have "+c.pkPoints+" PK points.", c.talkingNpc, "Mazchna");
    			c.dialogueAction = 39;
    		break;
    		case 23:
    			sendOption5("Dark Knight Fortress", "44 Portals", "East Dragons", "Mage Bank", "High Voltage Champ");
    			c.portalFour = 1;
    		break;
    		case 24:
    			sendOption4("Weapons and accessories", "Low Level Shop", "Food & Potions", "Archer Store");
    			c.dialogueAction = 15;
    		break;
    		case 25:
    			sendOption5("Magic Armour Shop", "Armour Shop", "Costume Shop", "Skillcape Shop", "Skillcape Shop two");
    			c.dialogueAction = 16;
    		break;
    		case 26:
    			sendNpcChat2("Welcome to OverloadX!", "To begin your journey go up the stairs and use the exit.",  c.talkingNpc, "Archaeologist");
    			c.dialogueAction = 18;
    		break;
    		case 27:
    			sendNpcChat2("Which elemental altar would you like to visit?", "I also have a small runecrafting shop if your interested.",  c.talkingNpc, "Mage of Zamorak");
    			c.nextChat =17;
    		break;
    		case 28:
    			sendNpcChat2("Welcome to the skiller area.", "Which shop would you like to use?",  c.talkingNpc, "Arianwyn");
    			c.nextChat =29;
    			//c.dialogueAction = 20;
    			c.shopThree = 1;
    		break;
    		case 29:
    			sendOption4("General Store", "Tools", "Raw materials", "Raw materials two");
    			//c.dialogueAction = 20;
    			c.shopThree = 1;
    		break;
    		case 30:
    			sendNpcChat4("Hello adventurer...", "My name is Sir Tristram,", "I am here looking for artifacts lost from my ancestors ", 
    							"do you have any that I can buy off of you for gold?", c.talkingNpc, "Sir Tristram");
    			c.nextChat = 31;
    		break;
    		case 31:
    			sendOption2("Sure, I wont be needing them.", "No thanks.");
    			c.dialogueAction = 31;
    		break;
    		case 32:
    			sendPlayerChat2("Hmm..", "maybe I should leave through the exit.");
    			c.dialogueAction = 33;
    		break;
    		case 33:
    			sendNpcChat1("Hello there adventurer", c.talkingNpc, "Archaeological expert");
    			c.nextChat = 34;
    		break;
    		case 34:
    			sendPlayerChat1("Hello there, Im in search of a quest!");
    			c.nextChat = 35;
    		break;
    		case 35:
    			sendNpcChat3("Hmmm...", "A quest you say?", "Let me think",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 36;
    		break;	
    		case 36:
    			sendNpcChat2("Well unfortunately, I dont need any quests being done", "but I am on my way to excavate an ancient egyptian tomb.",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 37;
    		break;
    		case 37:
    			sendNpcChat2("Im traveling to the center of Al-Kahird desert in search", "of ancient artefacts and I could use an extra hand.",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 38;
    		break;
    		case 38:
    			sendNpcChat1("If your interested meet me near Al-Kahird.",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 39;
    		break;
    		case 39:
    			sendNpcChat3("But you will have to excuse me for now,", "I have been traveling for many months and", "must take some time to relax.",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 40;
    		break;
    		case 40:
    			sendNpcChat3("In a few days when I am fully rested,", "Then I will resume my travels and you can", "meet me in Al-Kahird",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 41;
    		break;
    		case 41:
    			sendNpcChat2("But untill then, I will remain here", "resting untill the time comes",  c.talkingNpc, "Archaeological expert");
    			c.nextChat = 42;
    		break;
    		case 42:
    			sendPlayerChat1("Ok, Thanks");
    			c.getPA().closeAllWindows();
    		break;
    		case 100:
    			sendNpcChat2("Hello there " +c.playerName, " what can I do for you?",  c.talkingNpc, "Luck Quest");
    			c.nextChat = 101;
    		break;
    		case 101:
    			sendOption2("Do you have any quests for me?", "Nevermind");
    			c.dialogueAction = 101;
    		break;
    		case 102:
    			sendNpcChat1("Please find me " +luckQuest.amountNeeded(c) + " " + Item.getItemName(luckQuest.level1) + ".", c.talkingNpc, "Luck Quest");
    		break;
    		case 103:
    			sendOption2("Continue helping?", "I want my reward.");
    			c.dialogueAction = 103;
    		break;
    		case 104:
    			sendNpcChat1("Please find me " +luckQuest.amountNeeded(c) + " " + Item.getItemName(luckQuest.level2) + ".", c.talkingNpc, "Luck Quest");
    		break;
    		case 105:
    			sendOption2("Continue helping?", "I want my reward.");
    			c.dialogueAction = 105;
    		break;
    		case 106:
    			sendNpcChat1("Please find me " +luckQuest.amountNeeded(c) + " " + Item.getItemName(luckQuest.level3) + ".", c.talkingNpc, "Luck Quest");
    		break;
    		case 107:
    			sendNpcChat2("Thank you for helping me.", "Please accept this reward.", c.talkingNpc, "Luck Quest");
    		break;
    		case 185:
    			sendNpcChat4("Hello, im Lottie im in charge of Rune-X-Scape's Lottery.", "Entering costs 2 million gp but you could win up to", "250 million gp! you can enter up to 5 times per draw.", "Would you like to enter the lottery?", c.talkingNpc, "Lottie");
    			c.nextChat = 186;
    		break;
    		case 186:
    			sendOption2("Yes i would like to enter!", "No, Id rather not.");
    			c.dialogueAction = 186;
    		break;
    		case 187:
    			sendOption2("Would you like to try your luck? Be careful - it costs 1 million GP", "No, I am fine.");
    			c.dialogueAction = 187;
    		break;
    		case 200:
    			sendNpcChat4("Hello there "+c.playerName+"!"," I have the ability to reset your combat stats for free!","But remember, this is irreversable!","What would you like me to do?", c.talkingNpc, "Town Crier");
    			c.nextChat = 21;
    		break;
    		case 210:
    			sendOption4("Reset Defence", "Reset Prayer", "Reset Attack", "Reset All Combat Stats");
    			c.dialogueAction = 42;
    		break;
    		case 230:
    			sendNpcChat2("Congratulations!", "Your defence has been completely reset!",c.talkingNpc, "Town Crier");
    			c.nextChat = 0;
    		break;
    		case 240:
    			sendNpcChat2("Congratulations!", "Your attack has been completely reset!",c.talkingNpc, "Town Crier");
    			c.nextChat = 0;
    		break;
    		case 250:
    			sendNpcChat2("Congratulations!", "Your combat stats have been completely reset!",c.talkingNpc, "Town Crier");
    			c.nextChat = 0;
    		break;
    		case 260:
    			sendNpcChat2("Congratulations!","Your prayer have been completely reset!",c.talkingNpc, "Town Crier");
    			c.nextChat = 0;
    		break;
    		}
    	}
    	
    	/*
    	 * Information Box
    	 */
    	
    	public void sendStartInfo(String text, String text1, String text2, String text3, String title) {
    		c.getPA().sendFrame126(title, 6180);
    		c.getPA().sendFrame126(text, 6181);
    		c.getPA().sendFrame126(text1, 6182);
    		c.getPA().sendFrame126(text2, 6183);
    		c.getPA().sendFrame126(text3, 6184);
    		c.getPA().sendFrame164(6179);
    	}
    	
    	/*
    	 * Options
    	 */
    	
    	public void sendOption(String s, String s1) {
    		c.getPA().sendFrame126("Select an Option", 2470);
    	 	c.getPA().sendFrame126(s, 2471);
    		c.getPA().sendFrame126(s1, 2472);
    		c.getPA().sendFrame126("Click here to continue", 2473);
    		c.getPA().sendFrame164(13758);
    	}	
    	
    	public void sendOption2(String s, String s1) {
    		c.getPA().sendFrame126("Select an Option", 2460);
    		c.getPA().sendFrame126(s, 2461);
    		c.getPA().sendFrame126(s1, 2462);
    		c.getPA().sendFrame164(2459);
    	}
    	
    	public void sendOption3(String s, String s1, String s2) {
    		c.getPA().sendFrame126("Select an Option", 2470);
    		c.getPA().sendFrame126(s, 2471);
    		c.getPA().sendFrame126(s1, 2472);
    		c.getPA().sendFrame126(s2, 2473);
    		c.getPA().sendFrame164(2469);
    	}
    	
    	public void sendOption4(String s, String s1, String s2, String s3) {
    		c.getPA().sendFrame126("Select an Option", 2481);
    		c.getPA().sendFrame126(s, 2482);
    		c.getPA().sendFrame126(s1, 2483);
    		c.getPA().sendFrame126(s2, 2484);
    		c.getPA().sendFrame126(s3, 2485);
    		c.getPA().sendFrame164(2480);
    	}
    	
    	public void sendOption5(String s, String s1, String s2, String s3, String s4) {
    		c.getPA().sendFrame126("Select an Option", 2493);
    		c.getPA().sendFrame126(s, 2494);
    		c.getPA().sendFrame126(s1, 2495);
    		c.getPA().sendFrame126(s2, 2496);
    		c.getPA().sendFrame126(s3, 2497);
    		c.getPA().sendFrame126(s4, 2498);
    		c.getPA().sendFrame164(2492);
    	}
    
    	/*
    	 * Statements
    	 */
    	
    	public void sendStatement(String s) { // 1 line click here to continue chat box interface
    		c.getPA().sendFrame126(s, 357);
    		c.getPA().sendFrame126("Click here to continue", 358);
    		c.getPA().sendFrame164(356);
    	}
    	
    	/*
    	 * Npc Chatting
    	 */
    	
    	public void sendNpcChat1(String s, int ChatNpc, String name) {
    		c.getPA().sendFrame200(4883, 591);
    		c.getPA().sendFrame126(name, 4884);
    		c.getPA().sendFrame126(s, 4885);
    		c.getPA().sendFrame75(ChatNpc, 4883);
    		c.getPA().sendFrame164(4882);
    	}
    	
    	public void sendNpcChat2(String s, String s1, int ChatNpc, String name) {
    		c.getPA().sendFrame200(4888, 591);
    		c.getPA().sendFrame126(name, 4889);
    		c.getPA().sendFrame126(s, 4890);
    		c.getPA().sendFrame126(s1, 4891);
    		c.getPA().sendFrame75(ChatNpc, 4888);
    		c.getPA().sendFrame164(4887);
    	}
    	
    	public void sendNpcChat3(String s, String s1, String s2, int ChatNpc, String name) {
    		c.getPA().sendFrame200(4894, 591);
    		c.getPA().sendFrame126(name, 4895);
    		c.getPA().sendFrame126(s, 4896);
    		c.getPA().sendFrame126(s1, 4897);
    		c.getPA().sendFrame126(s2, 4898);
    		c.getPA().sendFrame75(ChatNpc, 4894);
    		c.getPA().sendFrame164(4893);
    	}
    	
    	public void sendNpcChat4(String s, String s1, String s2, String s3, int ChatNpc, String name) {
    		c.getPA().sendFrame200(4901, 591);
    		c.getPA().sendFrame126(name, 4902);
    		c.getPA().sendFrame126(s, 4903);
    		c.getPA().sendFrame126(s1, 4904);
    		c.getPA().sendFrame126(s2, 4905);
    		c.getPA().sendFrame126(s3, 4906);
    		c.getPA().sendFrame75(ChatNpc, 4901);
    		c.getPA().sendFrame164(4900);
    	}
    	
    	/*
    	 * Player Chating Back
    	 */
    	
    	public void sendPlayerChat1(String s) {
    		c.getPA().sendFrame200(969, 591);
    		c.getPA().sendFrame126(c.playerName, 970);
    		c.getPA().sendFrame126(s, 971);
    		c.getPA().sendFrame185(969);
    		c.getPA().sendFrame164(968);
    	}
    	
    	public void sendPlayerChat2(String s, String s1) {
    		c.getPA().sendFrame200(974, 591);
    		c.getPA().sendFrame126(c.playerName, 975);
    		c.getPA().sendFrame126(s, 976);
    		c.getPA().sendFrame126(s1, 977);
    		c.getPA().sendFrame185(974);
    		c.getPA().sendFrame164(973);
    	}
    	
    	public void sendPlayerChat3(String s, String s1, String s2) {
    		c.getPA().sendFrame200(980, 591);
    		c.getPA().sendFrame126(c.playerName, 981);
    		c.getPA().sendFrame126(s, 982);
    		c.getPA().sendFrame126(s1, 983);
    		c.getPA().sendFrame126(s2, 984);
    		c.getPA().sendFrame185(980);
    		c.getPA().sendFrame164(979);
    	}
    	
    	public void sendPlayerChat4(String s, String s1, String s2, String s3) {
    		c.getPA().sendFrame200(987, 591);
    		c.getPA().sendFrame126(c.playerName, 988);
    		c.getPA().sendFrame126(s, 989);
    		c.getPA().sendFrame126(s1, 990);
    		c.getPA().sendFrame126(s2, 991);
    		c.getPA().sendFrame126(s3, 992);
    		c.getPA().sendFrame185(987);
    		c.getPA().sendFrame164(986);
    	}
    }


    actionhandler.java
    Spoiler for Show:
    Code:
    case 36:
    				if (c.luckQuest == 0) { // so it displays first chat at beginning
    					c.getDH().sendDialogues(100, npcType);
    				} else if (c.luckQuest == 1) { // so it displays first chat at beginning
    					if (!c.getItems().playerHasItem(luckQuest.level1, luckQuest.amountNeeded(c))){
    						c.getDH().sendDialogues(102, npcType);
    					} else {
    						c.getItems().deleteItem(luckQuest.level1, luckQuest.amountNeeded(c));
    						c.getDH().sendDialogues(103, npcType);
    					}
    				} else if (c.luckQuest == 2) { // so it displays first chat at beginning
    					if (!c.getItems().playerHasItem(luckQuest.level2, luckQuest.amountNeeded(c))){
    						c.getDH().sendDialogues(104, npcType);
    					} else {
    						c.getItems().deleteItem(luckQuest.level2, luckQuest.amountNeeded(c));
    						c.getDH().sendDialogues(105, npcType);
    					}
    				} else if (c.luckQuest == 3) { // so it displays first chat at beginning
    					if (!c.getItems().playerHasItem(luckQuest.level2, luckQuest.amountNeeded(c))){
    						c.getDH().sendDialogues(106, npcType);
    					} else {
    						c.getItems().deleteItem(luckQuest.level3, luckQuest.amountNeeded(c));
    						c.getDH().sendDialogues(107, npcType);
    					}
    				}
    			break;



    and clickingbuttons.java

    Spoiler for Show:
    Code:
    else if (c.dialogueAction == 101) {
    					c.luckQuest = 1;
    					c.getPA().questTab();
    					c.getDH().sendDialogues(102, 36);
    				} else if (c.dialogueAction == 103) {
    					c.luckQuest = 2;
    					c.getPA().questTab();
    					c.getDH().sendDialogues(104, 36);
    				} else if (c.dialogueAction == 105) {
    					c.luckQuest = 3;
    					c.getPA().questTab();
    					c.getDH().sendDialogues(106, 36);


    the gif i uploaded shows what happens, i couldnt figure out how to show gif on the post since it was too large so ... Gif

    here is the virusscan, idk if any of you would want it but just in case VirusTotal
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Aug 2010
    Posts
    115
    Thanks given
    1
    Thanks received
    3
    Rep Power
    26
    seriously nobody can help o.O?
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [PI] A Custom/Very easy quest!
    By Kaiser Btw in forum Tutorials
    Replies: 24
    Last Post: 08-06-2012, 01:43 AM
  2. Adding a custom Quest (pi)
    By xx1hitkoxx in forum Help
    Replies: 1
    Last Post: 02-09-2012, 04:16 AM
  3. Quest Tab [Custom]
    By Robin Spud in forum Show-off
    Replies: 20
    Last Post: 01-09-2010, 12:00 AM
  4. meh custom quest
    By tehGanjaman in forum Show-off
    Replies: 3
    Last Post: 04-13-2009, 05:19 AM
  5. Custom quest/text
    By BenjaR in forum Help
    Replies: 1
    Last Post: 03-26-2009, 04:46 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •