Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExStorageMaxCount


        return;
      }
    }
    if(SkillLearn.common)
    {
      activeChar.sendPacket(new ExStorageMaxCount(activeChar));
    }
    activeChar.sendPacket(new SkillList(activeChar));
    if(trainer != null)
    {
      if(_skillType == AcquireSkillList.USUAL)
View Full Code Here


    }
    else
    {
      packets.add(new L2FriendList(activeChar, false));
    }
    packets.add(new ExStorageMaxCount(activeChar));
    packets.add(new QuestList(activeChar));
    packets.add(new ExBasicActionList());
    // refresh player info
    packets.add(new EtcStatusUpdate(activeChar));
    packets.add(new ExPCCafePointInfo(activeChar));
View Full Code Here

  }

  @Override
  public void statChanged(Double oldValue, double newValue, double baseValue, Env env)
  {
    _calculator._character.sendPacket(new ExStorageMaxCount((L2Player) _calculator._character));
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExStorageMaxCount

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.