Package net.sf.l2j.gameserver.serverpackets

Examples of net.sf.l2j.gameserver.serverpackets.ShowMiniMap


    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


      return;
    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

  protected final void runImpl()
  {
    L2PcInstance activeChar = getClient().getActiveChar();
    if (activeChar == null)
        return;
    activeChar.sendPacket(new ShowMiniMap(1665));
  }
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.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.