Examples of sendSkillList()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

    {
      ExStorageMaxCount esmc = new ExStorageMaxCount(player);
      player.sendPacket(esmc);
    }
   
    player.sendSkillList();
  }

  @Override
  public String getType()
  {
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

          player.removeSkill(skill);
        }

        activeChar.sendMessage("You removed all skills from " + player.getName());
        player.sendMessage("Admin removed all skills from you.");
        player.sendSkillList();
        player = null;
      }
    }
    else if(command.startsWith("admin_add_clan_skill"))
    {
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

    }

    //Notify player and admin
    player.sendMessage("A GM gave you " + skillCounter + " skills.");
    activeChar.sendMessage("You gave " + skillCounter + " skills to " + player.getName());
    player.sendSkillList();

    skills = null;
    player = null;
    target = null;
  }
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

    sendPacket(new FriendList(activeChar));
    sendPacket(new ItemList(activeChar, false));
    sendPacket(new ShortCutInit(activeChar));

    // Send all skills to char
    activeChar.sendSkillList();
   
    if(RankPvpSystemConfig.NICK_COLOR_ENABLED || RankPvpSystemConfig.TITLE_COLOR_ENABLED)
    {
      KillerPvpStats activeCharPvpStats = PvpTable.getInstance().getKillerPvpStats(activeChar.getObjectId());
     
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

        if (tempItem != null && tempItem.getItemId() == 8763)
        {
          activeChar.removeSkill(3626, true);
          activeChar.removeSkill(3627, true);
          activeChar.removeSkill(3628, true);
          activeChar.sendSkillList();
        }
       
        if (item.getEnchantLevel() > 0)
        {
          sm = new SystemMessage(SystemMessageId.S1_S2_EQUIPPED);
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

    {
      if(skill.getLevel() > 100)
      {
        _skillLvl = _baseLvl;
        player.addSkill(SkillTable.getInstance().getInfo(_skillId, _skillLvl), true);
        player.sendSkillList();
      }
      SystemMessage sm = new SystemMessage(SystemMessageId.YOU_HAVE_FAILED_TO_ENCHANT_THE_SKILL_S1);
      sm.addSkillName(_skillId);
      player.sendPacket(sm);
    }
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

      player.sendPacket(sm);
    }
    trainer.showEnchantSkillList(player, player.getClassId());

    player.sendPacket(new UserInfo(player));
    player.sendSkillList();
   
    // update all the shortcuts to this skill
    L2ShortCut[] allShortCuts = player.getAllShortCuts();

    for(L2ShortCut sc : allShortCuts)
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

        if (!item.isEquipped())
        {
          activeChar.addSkill(SkillTable.getInstance().getInfo(3626, 1));
          activeChar.addSkill(SkillTable.getInstance().getInfo(3627, 1));
          activeChar.addSkill(SkillTable.getInstance().getInfo(3628, 1));
          activeChar.sendSkillList();
        }
      }
     
      // Equip or unEquip
      L2ItemInstance[] items = null;
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

        if (itemId == 8763)
        {
          activeChar.removeSkill(3626, true);
          activeChar.removeSkill(3627, true);
          activeChar.removeSkill(3628, true);
          activeChar.sendSkillList();
        }
       
        if (item.getEnchantLevel() > 0)
        {
          sm = new SystemMessage(SystemMessageId.EQUIPMENT_S1_S2_REMOVED);
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.sendSkillList()

            {
              if(activeChar.isFlying())
              {
                // Remove skill Wyvern Breath
                activeChar.removeSkill(SkillTable.getInstance().getInfo(4289, 1));
                activeChar.sendSkillList();
              }
             
              if(activeChar.setMountType(0))
              {
                Ride dismount = new Ride(activeChar.getObjectId(), Ride.ACTION_DISMOUNT, 0);
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.