Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.MuteListRequestPacket$AgentDataBlock


  /// <summary>
  /// Request the list of muted objects and avatars for this agent
  /// </summary>
  public void RequestMuteList()
  {
    MuteListRequestPacket mute = new MuteListRequestPacket();
    mute.AgentData.AgentID = Client.self.getAgentID();
    mute.AgentData.SessionID = Client.self.getSessionID();
    mute.MuteData.MuteCRC = 0;

    Client.network.SendPacket(mute);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.MuteListRequestPacket$AgentDataBlock

Copyright © 2018 www.massapicom. 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.