Package l2p.gameserver.model.items

Examples of l2p.gameserver.model.items.L2ItemInstance.canBeDestroyed()


    if(itemToRemove.isHeroWeapon())
    {
      activeChar.sendPacket(Msg.HERO_WEAPONS_CANNOT_BE_DESTROYED);
      return;
    }
    if(!itemToRemove.canBeDestroyed(activeChar))
    {
      activeChar.sendPacket(Msg.THIS_ITEM_CANNOT_BE_DISCARDED);
      return;
    }
    if(activeChar.getPrivateStoreType() != L2Player.STORE_PRIVATE_NONE)
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.