Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.PledgeSkillList


      packets.clear();
    }
    if(activeChar.getClan() != null)
    {
      notifyClanMembers(activeChar);
      sendPacket(new PledgeShowMemberListAll(activeChar.getClan(), activeChar), new PledgeShowInfoUpdate(activeChar.getClan()), new PledgeSkillList(activeChar.getClan()));
      if(activeChar.getClan().isAttacker())
      {
        activeChar.setSiegeState(1);
      }
      else if(activeChar.getClan().isDefender())
View Full Code Here


  {
    if(_reputation < 0)
    {
      return;
    }
    activeChar.sendPacket(new PledgeSkillList(this));
    for(L2Skill s : _skills.values())
    {
      if(s == null)
      {
        continue;
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.PledgeSkillList

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.