物品体系
获得关于MLD物品的信息
Last updated
Was this helpful?
获得关于MLD物品的信息
Last updated
Was this helpful?
Was this helpful?
* @param itemStack 需要判断的物品
boolean result = ItemManager.isMldItem(ItemStack);* @param itemStack 需要判断的物品
* @param typeEnum 需要判断的类型
* @return 若返回为NULL,则该物品不是Mld物品!
boolean result = isItemType(ItemStack, ItemTypeEnum);* @param itemStack 目标ItemStack
MldItem mldItem = getMldItem(ItemStack);//获得卖出价格
double offerPrice = mldItem.getOfferPrice();
//获得购买价格
double buyPrice = mldItem.getBuyPrice();//获得物品类型
ItemTypeEnum itemType = mldItem.getItemType();