Package com.l2jfrozen.gameserver.network.serverpackets

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


      if(Config.DEBUG)
      {
        _log.fine("Send status for party window of " + getObjectId() + "(" + getName() + ") to his party. CP: " + getCurrentCp() + " HP: " + getCurrentHp() + " MP: " + getCurrentMp());
      }
      // Send the Server->Client packet PartySmallWindowUpdate with current HP, MP and Level to all other L2PcInstance of the Party
      PartySmallWindowUpdate update = new PartySmallWindowUpdate(this);
      getParty().broadcastToPartyMembers(this, update);
      update = null;
    }

    if (isInOlympiadMode())
View Full Code Here


   */
  public void broadcastClassIcon()
  {
    // Update class icon in party and clan
    if (isInParty())
      getParty().broadcastToPartyMembers(new PartySmallWindowUpdate(this));

    if (getClan() != null)
      getClan().broadcastToOnlineMembers(new PledgeShowMemberListUpdate(this));
 
View Full Code Here

TOP

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

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.