Examples of RetrieveInstantMessagesPacket


Examples of com.ngt.jopenmetaverse.shared.protocol.RetrieveInstantMessagesPacket

  /// <summary>
  /// Request any instant messages sent while the client was offline to be resent.
  /// </summary>
  public void RetrieveInstantMessages()
  {
    RetrieveInstantMessagesPacket p = new RetrieveInstantMessagesPacket();
    p.AgentData.AgentID = Client.self.getAgentID();
    p.AgentData.SessionID = Client.self.getSessionID();
    Client.network.SendPacket(p);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.