Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.ScriptDialogReplyPacket$DataBlock


  /// <param name="buttonlabel">Label of button you're "clicking"</param>
  /// <param name="objectID"><seealso cref="UUID"/> of Object that sent the dialog request</param>
  /// <seealso cref="OnScriptDialog"/>
  public void ReplyToScriptDialog(int channel, int buttonIndex, String buttonlabel, UUID objectID)
  {
    ScriptDialogReplyPacket reply = new ScriptDialogReplyPacket();

    reply.AgentData.AgentID = Client.self.getAgentID();
    reply.AgentData.SessionID = Client.self.getSessionID();

    reply.Data.ButtonIndex = buttonIndex;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.ScriptDialogReplyPacket$DataBlock

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.