Search in sources :

Example 86 with Trade

use of com.earth2me.essentials.Trade in project Essentials by drtshock.

the class Commandsell method sellItem.

private BigDecimal sellItem(User user, ItemStack is, String[] args, boolean isBulkSell) throws Exception {
    int amount = ess.getWorth().getAmount(ess, user, is, args, isBulkSell);
    BigDecimal worth = ess.getWorth().getPrice(is);
    if (worth == null) {
        throw new Exception(tl("itemCannotBeSold"));
    }
    if (amount <= 0) {
        if (!isBulkSell) {
            user.sendMessage(tl("itemSold", NumberUtil.displayCurrency(BigDecimal.ZERO, ess), BigDecimal.ZERO, is.getType().toString().toLowerCase(Locale.ENGLISH), NumberUtil.displayCurrency(worth, ess)));
        }
        return BigDecimal.ZERO;
    }
    BigDecimal result = worth.multiply(BigDecimal.valueOf(amount));
    // TODO: Prices for Enchantments
    final ItemStack ris = is.clone();
    ris.setAmount(amount);
    if (!user.getBase().getInventory().containsAtLeast(ris, amount)) {
        // This should never happen.
        throw new IllegalStateException("Trying to remove more items than are available.");
    }
    user.getBase().getInventory().removeItem(ris);
    user.getBase().updateInventory();
    Trade.log("Command", "Sell", "Item", user.getName(), new Trade(ris, ess), user.getName(), new Trade(result, ess), user.getLocation(), ess);
    user.giveMoney(result);
    user.sendMessage(tl("itemSold", NumberUtil.displayCurrency(result, ess), amount, is.getType().toString().toLowerCase(Locale.ENGLISH), NumberUtil.displayCurrency(worth, ess)));
    logger.log(Level.INFO, tl("itemSoldConsole", user.getDisplayName(), is.getType().toString().toLowerCase(Locale.ENGLISH), NumberUtil.displayCurrency(result, ess), amount, NumberUtil.displayCurrency(worth, ess)));
    return result;
}
Also used : Trade(com.earth2me.essentials.Trade) ItemStack(org.bukkit.inventory.ItemStack) BigDecimal(java.math.BigDecimal)

Aggregations

Trade (com.earth2me.essentials.Trade)86 ItemStack (org.bukkit.inventory.ItemStack)26 ChargeException (com.earth2me.essentials.ChargeException)20 BigDecimal (java.math.BigDecimal)18 Location (org.bukkit.Location)18 User (com.earth2me.essentials.User)14 NoChargeException (com.earth2me.essentials.commands.NoChargeException)4 MaxMoneyException (net.ess3.api.MaxMoneyException)4 World (org.bukkit.World)4 Kit (com.earth2me.essentials.Kit)2 Mob (com.earth2me.essentials.Mob)2 Teleport (com.earth2me.essentials.Teleport)2 Commandrepair (com.earth2me.essentials.commands.Commandrepair)2 NotEnoughArgumentsException (com.earth2me.essentials.commands.NotEnoughArgumentsException)2 IText (com.earth2me.essentials.textreader.IText)2 KeywordReplacer (com.earth2me.essentials.textreader.KeywordReplacer)2 TextInput (com.earth2me.essentials.textreader.TextInput)2 TextPager (com.earth2me.essentials.textreader.TextPager)2 IOException (java.io.IOException)2 ArrayList (java.util.ArrayList)2