Thread: Player dialogue;

Results 1 to 3 of 3
  1. #1 Player dialogue; 
    I don't take you serious
    Kastro's Avatar
    Join Date
    Nov 2008
    Posts
    2,504
    Thanks given
    92
    Thanks received
    389
    Rep Power
    604
    Would anyone be able to explain how player Dialogue would be written? I understand NPC dialogue, though I have no clue how to show the player talking.

    Also - Where would I go to make the Dialogue's heads move?

    I honestly suck when it comes to Dialogue.

    Reply With Quote  
     

  2. #2  
    Registered Member
    G0nzo's Avatar
    Join Date
    Feb 2009
    Posts
    4,960
    Thanks given
    514
    Thanks received
    546
    Rep Power
    1735
    Code:
    	/**
    	 * Writes an interface onto the chatbox.
    	 * @param frame The interface to write on.
    	 * @return The action sender instance, for chaining.
    	 */
    	public ActionSender sendFrame164(int frame) {
    		PacketBuilder bldr = new PacketBuilder(164);
    		bldr.putLEShort(frame);
    		player.getSession().write(bldr.toPacket());
    		player.getInterfaceState().interfaceOpened(frame);
    		return this;
    	}
    credits to scu
    Computer Science Graduate, Java Expert
    Need help with something? PM me
    Reply With Quote  
     

  3. #3  
    I don't take you serious
    Kastro's Avatar
    Join Date
    Nov 2008
    Posts
    2,504
    Thanks given
    92
    Thanks received
    389
    Rep Power
    604
    That'd be player dialogue? Thanks.

    Just need to convert it

    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •