Package com.ngt.jopenmetaverse.shared.protocol

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


  /// </summary>
  /// <param name="targetID">target avatars <seealso cref="UUID"/> to lure</param>
  /// <param name="message">custom message to send with invitation</param>
  public void SendTeleportLure(UUID targetID, String message)
  {
    StartLurePacket p = new StartLurePacket();
    p.AgentData.AgentID = Client.self.id;
    p.AgentData.SessionID = Client.self.getSessionID();
    p.Info.LureType = 0;
    p.Info.Message = Utils.stringToBytesWithTrailingNullByte(message);
    p.TargetData = new StartLurePacket.TargetDataBlock[] { new StartLurePacket.TargetDataBlock() };
View Full Code Here

TOP

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