Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <remarks>You can confirm the removal by comparing the tasks inventory serial before and after the
  /// request with the <see cref="RequestTaskInventory"/> request combined with
  /// the <seealso cref="TaskInventoryReply"/> event</remarks>
  public void RemoveTaskInventory(long objectLocalID, UUID taskItemID, Simulator simulator)
  {
    RemoveTaskInventoryPacket remove = new RemoveTaskInventoryPacket();
    remove.AgentData.AgentID = Client.self.getAgentID();
    remove.AgentData.SessionID = Client.self.getSessionID();

    remove.InventoryData.ItemID = taskItemID;
    remove.InventoryData.LocalID = objectLocalID;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.RemoveTaskInventoryPacket$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.