Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="simulator">A reference to the <seealso cref="OpenMetaverse.Simulator"/> object where the object resides</param>
  /// <param name="localID">The objects ID which is local to the simulator the object is in</param>
  /// <param name="groupOwner">The <seealso cref="UUID"/> of the group to deed the object to</param>
  public void DeedObject(Simulator simulator, long localID, UUID groupOwner)
  {
    ObjectOwnerPacket objDeedPacket = new ObjectOwnerPacket();
    objDeedPacket.AgentData.AgentID = Client.self.getAgentID();
    objDeedPacket.AgentData.SessionID = Client.self.getSessionID();

    // Can only be use in God mode
    objDeedPacket.HeaderData.Override = false;
View Full Code Here


  /// <param name="simulator">A reference to the <seealso cref="OpenMetaverse.Simulator"/> object where the object resides</param>
  /// <param name="localIDs">An array which contains the IDs of the objects to deed</param>
  /// <param name="groupOwner">The <seealso cref="UUID"/> of the group to deed the object to</param>
  public void DeedObjects(Simulator simulator, List<Long> localIDs, UUID groupOwner)
  {
    ObjectOwnerPacket packet = new ObjectOwnerPacket();
    packet.AgentData.AgentID = Client.self.getAgentID();
    packet.AgentData.SessionID = Client.self.getSessionID();

    // Can only be use in God mode
    packet.HeaderData.Override = false;
View Full Code Here

TOP

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