Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.ShowMiniMap


  {
    L2PcInstance activeChar = getClient().getActiveChar();
    if(activeChar == null)
      return;

    activeChar.sendPacket(new ShowMiniMap(1665));
  }
View Full Code Here


    final L2PcInstance activeChar = (L2PcInstance) playable;
    final int itemId = item.getItemId();
    if(itemId == 7063)
    {
      activeChar.sendPacket(new ShowMiniMap(1665));
      activeChar.sendPacket(new RadarControl(0, 1, 51995, -51265, -3104));
    }
    else
    {
      activeChar.sendPacket(new ShowMiniMap(itemId));
    }

    return;
  }
View Full Code Here

    String content = HtmCache.getInstance().getHtm(filename);

    // Quest item: Lidia's diary
    if(itemId == 7064)
    {
      activeChar.sendPacket(new ShowMiniMap(1665));
      activeChar.sendPacket(new RadarControl(0, 1, 51995, -51265, -3104));
    }

    if(content == null)
    {
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.ShowMiniMap

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.