Examples of ExResponseCommissionInfo


Examples of lineage2.gameserver.network.serverpackets.ExResponseCommissionInfo

  public void showCommissionInfo(Player player, int itemObjId)
  {
    ItemInstance item = player.getInventory().getItemByObjectId(itemObjId);
    if ((item != null) && item.canBeSold(player))
    {
      player.sendPacket(new ExResponseCommissionInfo(item));
    }
    else
    {
      player.sendPacket(new ExResponseCommissionInfo(item));
    }
  }
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.