Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="globalX">Global X coordinate to move to</param>
  /// <param name="globalY">Global Y coordinate to move to</param>
  /// <param name="z">Z coordinate to move to</param>
  public void AutoPilot(double globalX, double globalY, double z)
  {
    GenericMessagePacket autopilot = createGenericMessagePacket(globalX, globalY, z);

    Client.network.SendPacket(autopilot);   
  }
View Full Code Here


    Client.network.SendPacket(autopilot);   
  }

  public GenericMessagePacket createGenericMessagePacket(double globalX, double globalY, double z)
  {
    GenericMessagePacket autopilot = new GenericMessagePacket();

    autopilot.AgentData.AgentID = Client.self.getAgentID();
    autopilot.AgentData.SessionID = Client.self.getSessionID();
    autopilot.AgentData.TransactionID = UUID.Zero;
    autopilot.MethodData.Invoice = UUID.Zero;
View Full Code Here

  /// <param name="globalY">Integer value for the global Y coordinate to move to</param>
  /// <param name="z">Floating-point value for the Z coordinate to move to</param>
  //          public void AutoPilot(ulong globalX, ulong globalY, float z)
  public void AutoPilot(BigInteger globalX, BigInteger globalY, float z)
  {
    GenericMessagePacket autopilot = new GenericMessagePacket();

    autopilot.AgentData.AgentID = Client.self.getAgentID();
    autopilot.AgentData.SessionID = Client.self.getSessionID();
    autopilot.AgentData.TransactionID = UUID.Zero;
    autopilot.MethodData.Invoice = UUID.Zero;
View Full Code Here

        /// Ask for a notification of friend's online status
        /// </summary>
        /// <param name="friendID">Friend's UUID</param>
        public void RequestOnlineNotification(UUID friendID)
        {
            GenericMessagePacket gmp = new GenericMessagePacket();

            gmp.AgentData.AgentID = Client.self.getAgentID();
            gmp.AgentData.SessionID = Client.self.getSessionID();
            gmp.AgentData.TransactionID = UUID.Zero;
View Full Code Here

        /// Start a request for Avatar Picks
        /// </summary>
        /// <param name="avatarid">UUID of the avatar</param>
        public void RequestAvatarPicks(UUID avatarid)
        {
            GenericMessagePacket gmp = new GenericMessagePacket();

            gmp.AgentData.AgentID = Client.self.getAgentID();
            gmp.AgentData.SessionID = Client.self.getSessionID();
            gmp.AgentData.TransactionID = UUID.Zero;
View Full Code Here

        /// Start a request for Avatar Classifieds
        /// </summary>
        /// <param name="avatarid">UUID of the avatar</param>
        public void RequestAvatarClassified(UUID avatarid)
        {
            GenericMessagePacket gmp = new GenericMessagePacket();

            gmp.AgentData.AgentID = Client.self.getAgentID();
            gmp.AgentData.SessionID = Client.self.getSessionID();
            gmp.AgentData.TransactionID = UUID.Zero;
View Full Code Here

        /// </summary>
        /// <param name="avatarid">UUID of the avatar</param>
        /// <param name="pickid">UUID of the profile pick</param>
        public void RequestPickInfo(UUID avatarid, UUID pickid)
        {
            GenericMessagePacket gmp = new GenericMessagePacket();

            gmp.AgentData.AgentID = Client.self.getAgentID();
            gmp.AgentData.SessionID = Client.self.getSessionID();
            gmp.AgentData.TransactionID = UUID.Zero;
View Full Code Here

        /// </summary>
        /// <param name="avatarid">UUID of the avatar</param>
        /// <param name="classifiedid">UUID of the profile classified</param>
        public void RequestClassifiedInfo(UUID avatarid, UUID classifiedid)
        {
            GenericMessagePacket gmp = new GenericMessagePacket();

            gmp.AgentData.AgentID = Client.self.getAgentID();
            gmp.AgentData.SessionID = Client.self.getSessionID();
            gmp.AgentData.TransactionID = UUID.Zero;
View Full Code Here

TOP

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

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.