Package com.l2jfrozen.gameserver.model.actor.instance

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


     
      L2ItemInstance[] unequiped = activeChar.getInventory().unEquipItemInSlotAndRecord(itemToRemove.getEquipSlot());
      InventoryUpdate iu = new InventoryUpdate();
      for (L2ItemInstance element : unequiped)
      {
        activeChar.checkSSMatch(null, element);
        iu.addModifiedItem(element);
      }
     
      activeChar.sendPacket(iu);
      activeChar.broadcastUserInfo();
View Full Code Here


      L2ItemInstance[] unequiped = activeChar.getInventory().unEquipItemInBodySlotAndRecord(item.getItem().getBodyPart());
      InventoryUpdate iu = new InventoryUpdate();

      for(L2ItemInstance element : unequiped)
      {
        activeChar.checkSSMatch(null, element);

        iu.addModifiedItem(element);
      }
      activeChar.sendPacket(iu);
      activeChar.broadcastUserInfo();
View Full Code Here

    // show the update in the inventory
    InventoryUpdate iu = new InventoryUpdate();

    for(L2ItemInstance element : unequiped)
    {
      activeChar.checkSSMatch(null, element);

      iu.addModifiedItem(element);
    }

    activeChar.sendPacket(iu);
View Full Code Here

        if (wep == null)
        {
          wep = activeChar.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
        }
       
        activeChar.checkSSMatch(item, wep);
       
      }
     
      // Remove the item if it's equiped
      if (isEquiped)
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.