Search in sources :

Example 61 with Trade

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

the class Commandrepair method repairItems.

private void repairItems(final ItemStack[] items, final IUser user, final List<String> repaired) {
    for (ItemStack item : items) {
        if (item == null || item.getType().isBlock() || item.getDurability() == 0) {
            continue;
        }
        final String itemName = item.getType().toString().toLowerCase(Locale.ENGLISH);
        final Trade charge = new Trade("repair-" + itemName.replace('_', '-'), new Trade("repair-" + item.getTypeId(), new Trade("repair-item", ess), ess), ess);
        try {
            charge.isAffordableFor(user);
        } catch (ChargeException ex) {
            user.sendMessage(ex.getMessage());
            continue;
        }
        if (!item.getEnchantments().isEmpty() && !ess.getSettings().getRepairEnchanted() && !user.isAuthorized("essentials.repair.enchanted")) {
            continue;
        }
        try {
            repairItem(item);
        } catch (Exception e) {
            continue;
        }
        try {
            charge.charge(user);
        } catch (ChargeException ex) {
            user.sendMessage(ex.getMessage());
        }
        repaired.add(itemName.replace('_', ' '));
    }
}
Also used : Trade(com.earth2me.essentials.Trade) ItemStack(org.bukkit.inventory.ItemStack) ChargeException(com.earth2me.essentials.ChargeException) ChargeException(com.earth2me.essentials.ChargeException)

Example 62 with Trade

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

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)

Example 63 with Trade

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

the class Commandjump method run.

@Override
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
    if (args.length > 0 && args[0].contains("lock") && user.isAuthorized("essentials.jump.lock")) {
        if (user.isFlyClickJump()) {
            user.setRightClickJump(false);
            user.sendMessage("Flying wizard mode disabled");
        } else {
            user.setRightClickJump(true);
            user.sendMessage("Enabling flying wizard mode");
        }
        return;
    }
    Location loc;
    final Location cloc = user.getLocation();
    try {
        loc = LocationUtil.getTarget(user.getBase());
        loc.setYaw(cloc.getYaw());
        loc.setPitch(cloc.getPitch());
        loc.setY(loc.getY() + 1);
    } catch (NullPointerException ex) {
        throw new Exception(tl("jumpError"), ex);
    }
    final Trade charge = new Trade(this.getName(), ess);
    charge.isAffordableFor(user);
    user.getTeleport().teleport(loc, charge, TeleportCause.COMMAND);
    throw new NoChargeException();
}
Also used : Trade(com.earth2me.essentials.Trade) Location(org.bukkit.Location)

Example 64 with Trade

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

the class Commandback method run.

@Override
protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
    if (user.getLastLocation() == null) {
        throw new Exception(tl("noLocationFound"));
    }
    if (user.getWorld() != user.getLastLocation().getWorld() && ess.getSettings().isWorldTeleportPermissions() && !user.isAuthorized("essentials.worlds." + user.getLastLocation().getWorld().getName())) {
        throw new Exception(tl("noPerm", "essentials.worlds." + user.getLastLocation().getWorld().getName()));
    }
    final Trade charge = new Trade(this.getName(), ess);
    charge.isAffordableFor(user);
    user.getTeleport().back(charge);
    throw new NoChargeException();
}
Also used : Trade(com.earth2me.essentials.Trade)

Example 65 with Trade

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

the class Economy method setMoney.

public static void setMoney(String name, BigDecimal balance) throws UserDoesNotExistException, NoLoanPermittedException {
    User user = getUserByName(name);
    if (user == null) {
        throw new UserDoesNotExistException(name);
    }
    if (balance.compareTo(ess.getSettings().getMinMoney()) < 0) {
        throw new NoLoanPermittedException();
    }
    if (balance.signum() < 0 && !user.isAuthorized("essentials.eco.loan")) {
        throw new NoLoanPermittedException();
    }
    try {
        user.setMoney(balance);
    } catch (MaxMoneyException ex) {
    // TODO: Update API to show max balance errors
    }
    Trade.log("API", "Set", "API", name, new Trade(balance, ess), null, null, null, ess);
}
Also used : Trade(com.earth2me.essentials.Trade) User(com.earth2me.essentials.User) MaxMoneyException(net.ess3.api.MaxMoneyException)

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