Examples of ExStorageMaxCount


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

      trainer.showSkillList(player, player.getSkillLearningClassId());
    }

    if(_id >= 1368 && _id <= 1372) // if skill is expand sendpacket :)
    {
      ExStorageMaxCount esmc = new ExStorageMaxCount(player);
      player.sendPacket(esmc);
    }
   
    player.sendSkillList();
  }
View Full Code Here

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

    StatusDbUpdater.updatePlayer(activeChar);

    ColorSystem(activeChar);

    // Expand Skill
    ExStorageMaxCount esmc = new ExStorageMaxCount(activeChar);
    activeChar.sendPacket(esmc);

    activeChar.getMacroses().sendUpdate();
   
    // Send packets info
View Full Code Here

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

Examples of l2p.gameserver.serverpackets.ExStorageMaxCount

    }
    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

Examples of l2p.gameserver.serverpackets.ExStorageMaxCount

  }

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

Examples of lineage2.gameserver.network.serverpackets.ExStorageMaxCount

      activeChar.getFriendList().notifyFriends(true);
      loadTutorial(activeChar);
      activeChar.restoreDisableSkills();
      activeChar.mentoringLoginConditions();
    }
    sendPacket(new L2FriendList(activeChar), new ExStorageMaxCount(activeChar), new QuestList(activeChar), new ExBasicActionList(activeChar), new EtcStatusUpdate(activeChar));
    activeChar.checkHpMessages(activeChar.getMaxHp(), activeChar.getCurrentHp());
    activeChar.checkDayNightMessages();
    if (Config.PETITIONING_ALLOWED)
    {
      PetitionManager.getInstance().checkPetitionMessages(activeChar);
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExStorageMaxCount

    {
      _activeChar.sendStatusUpdate(true, false, StatusUpdateField.KARMA);
    }
    if ((_changes & SEND_STORAGE_INFO) == SEND_STORAGE_INFO)
    {
      _activeChar.sendPacket(new ExStorageMaxCount(_activeChar));
    }
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExStorageMaxCount

      getSummonList().unsummonAll(false);
      setAgathion(0);
      restoreSkills();
      rewardSkills(false,false);
      checkSkills();
      sendPacket(new ExStorageMaxCount(this));
      refreshExpertisePenalty();
      getInventory().refreshEquip();
      getInventory().validateItems();
      for (int i = 0; i < 3; i++)
      {
View Full Code Here

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

        // apply augmentation boni for equipped items
        for (L2ItemInstance temp : activeChar.getInventory().getAugmentedItems())
          if (temp != null && temp.isEquipped()) temp.getAugmentation().applyBoni(activeChar);

        //Expand Skill
        ExStorageMaxCount esmc = new ExStorageMaxCount(activeChar);
        activeChar.sendPacket(esmc);

        activeChar.getMacroses().sendUpdate();

        sendPacket(new UserInfo(activeChar));
View Full Code Here

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

    else
      trainer.showSkillList(player, player.getSkillLearningClassId());

    if (_id >= 1368 && _id <= 1372) // if skill is expand sendpacket :)
    {
      ExStorageMaxCount esmc = new ExStorageMaxCount(player);
      player.sendPacket(esmc);
    }
  }
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.