Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.MapBlockRequestPacket$PositionDataBlock


  /// <param name="maxX"></param>
  /// <param name="maxY"></param>
  /// <param name="returnNonExistent"></param>
  public void RequestMapBlocks(GridLayerType layer, int minX, int minY, int maxX, int maxY, boolean returnNonExistent)
  {
    MapBlockRequestPacket request = new MapBlockRequestPacket();

    request.AgentData.AgentID = Client.self.getAgentID();
    request.AgentData.SessionID = Client.self.getSessionID();
    request.AgentData.Flags = layer.getIndex();
    request.AgentData.Flags |= (long)(returnNonExistent ? 0x10000 : 0);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.MapBlockRequestPacket$PositionDataBlock

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.