Thread: [PI] sendialogues wont show up.

Results 1 to 4 of 4
  1. #1 [PI] sendialogues wont show up. 
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    Hello, guys. Im currently standing at a problem i cant find a fix for. My clickingbuttons class wont run c.getDH().sendDialgoues(c.dialogueId, 0)
    it just shows a fast dialogue and close, i really dont know whats wrong...
    You don't mention

    Owner & Coder
    Area59

    Reply With Quote  
     

  2. #2  
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    Bumb
    You don't mention

    Owner & Coder
    Area59

    Reply With Quote  
     

  3. #3  
    Registered Member Emre's Avatar
    Join Date
    Jan 2014
    Posts
    596
    Thanks given
    91
    Thanks received
    61
    Rep Power
    7
    Show some code?
    Reply With Quote  
     

  4. #4  
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    Code:
    	
    	private 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);
    }
    
    	private 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 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);
    	}
    	
    	@SuppressWarnings("unused")
    	private 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 talk(int face, String line1, String line2, String line3, String line4, int npcID) {
    		c.getPA().sendFrame200(4901, face);
    		c.getPA().sendFrame126(c.getPA().GetNpcName(npcID).replaceAll("_", " "), 4902);
    		c.getPA().sendFrame126(""+line1, 4903);
    		c.getPA().sendFrame126(""+line2, 4904);
    		c.getPA().sendFrame126(""+line3, 4905);
    		c.getPA().sendFrame126(""+line4, 4906);
    		c.getPA().sendFrame126("Click here to continue", 4907);
    		c.getPA().sendFrame75(npcID, 4901);
    		c.getPA().sendFrame164(4900);
    	}
    	
    	@SuppressWarnings("unused")
    	private 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);
    	}
    }
    You don't mention

    Owner & Coder
    Area59

    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. Replies: 5
    Last Post: 07-30-2013, 01:07 AM
  2. Replies: 0
    Last Post: 11-18-2011, 11:24 PM
  3. Replies: 3
    Last Post: 04-20-2009, 03:58 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •