Examples of ShowMiniMap


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

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

    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

Examples of com.l2jfrozen.gameserver.network.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

Examples of l2p.gameserver.serverpackets.ShowMiniMap

    if(playable == null || !playable.isPlayer())
    {
      return;
    }
    L2Player player = (L2Player) playable;
    player.sendPacket(new ShowMiniMap(player, item.getItemId()));
  }
View Full Code Here

Examples of l2p.gameserver.serverpackets.ShowMiniMap

  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    if(activeChar != null)
    {
      sendPacket(new ShowMiniMap(activeChar, 1665));
    }
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ShowMiniMap

    if ((playable == null) || !playable.isPlayer())
    {
      return false;
    }
    Player player = (Player) playable;
    player.sendPacket(new ShowMiniMap(player, item.getItemId()));
    return true;
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ShowMiniMap

    if (activeChar.isActionBlocked(Zone.BLOCKED_ACTION_MINIMAP) || (activeChar.isInZone("[Hellbound_territory]") && (Functions.getItemCount(activeChar, 9994) == 0)))
    {
      activeChar.sendPacket(Msg.THIS_IS_AN_AREA_WHERE_YOU_CANNOT_USE_THE_MINI_MAP_THE_MINI_MAP_WILL_NOT_BE_OPENED);
      return;
    }
    sendPacket(new ShowMiniMap(activeChar, 0));
  }
View Full Code Here

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

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

      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

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

  protected final void runImpl()
  {
    L2PcInstance activeChar = getClient().getActiveChar();
    if (activeChar == null)
        return;
    activeChar.sendPacket(new ShowMiniMap(1665));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.