Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="objectLocalID">The simulator Local ID of the object</param>
  /// <param name="simulator">A reference to the simulator object that contains the object</param>
  /// <seealso cref="TaskInventoryReply"/>
  public void RequestTaskInventory(long objectLocalID, Simulator simulator)
  {
    RequestTaskInventoryPacket request = new RequestTaskInventoryPacket();
    request.AgentData.AgentID = Client.self.getAgentID();
    request.AgentData.SessionID = Client.self.getSessionID();
    request.InventoryData.LocalID = objectLocalID;

    Client.network.SendPacket(request, simulator);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.RequestTaskInventoryPacket

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.