Search in sources :

Example 1 with UserBalanceUpdateEvent

use of net.ess3.api.events.UserBalanceUpdateEvent in project Essentials by drtshock.

the class User method setMoney.

@Override
public void setMoney(final BigDecimal value) throws MaxMoneyException {
    if (ess.getSettings().isEcoDisabled()) {
        if (ess.getSettings().isDebug()) {
            ess.getLogger().info("Internal economy functions disabled, aborting balance change.");
        }
        return;
    }
    final BigDecimal oldBalance = _getMoney();
    UserBalanceUpdateEvent updateEvent = new UserBalanceUpdateEvent(this.getBase(), oldBalance, value);
    ess.getServer().getPluginManager().callEvent(updateEvent);
    BigDecimal newBalance = updateEvent.getNewBalance();
    if (Methods.hasMethod()) {
        try {
            final Method method = Methods.getMethod();
            if (!method.hasAccount(this.getName())) {
                throw new Exception();
            }
            final Method.MethodAccount account = Methods.getMethod().getAccount(this.getName());
            account.set(newBalance.doubleValue());
        } catch (Exception ex) {
        }
    }
    super.setMoney(newBalance, true);
    Trade.log("Update", "Set", "API", getName(), new Trade(newBalance, ess), null, null, null, ess);
}
Also used : UserBalanceUpdateEvent(net.ess3.api.events.UserBalanceUpdateEvent) Method(com.earth2me.essentials.register.payment.Method) BigDecimal(java.math.BigDecimal) MaxMoneyException(net.ess3.api.MaxMoneyException)

Example 2 with UserBalanceUpdateEvent

use of net.ess3.api.events.UserBalanceUpdateEvent in project Essentials by EssentialsX.

the class User method setMoney.

@Override
public void setMoney(final BigDecimal value) throws MaxMoneyException {
    if (ess.getSettings().isEcoDisabled()) {
        if (ess.getSettings().isDebug()) {
            ess.getLogger().info("Internal economy functions disabled, aborting balance change.");
        }
        return;
    }
    final BigDecimal oldBalance = _getMoney();
    UserBalanceUpdateEvent updateEvent = new UserBalanceUpdateEvent(this.getBase(), oldBalance, value);
    ess.getServer().getPluginManager().callEvent(updateEvent);
    BigDecimal newBalance = updateEvent.getNewBalance();
    if (Methods.hasMethod()) {
        try {
            final Method method = Methods.getMethod();
            if (!method.hasAccount(this.getName())) {
                throw new Exception();
            }
            final Method.MethodAccount account = Methods.getMethod().getAccount(this.getName());
            account.set(newBalance.doubleValue());
        } catch (Exception ex) {
        }
    }
    super.setMoney(newBalance, true);
    Trade.log("Update", "Set", "API", getName(), new Trade(newBalance, ess), null, null, null, ess);
}
Also used : UserBalanceUpdateEvent(net.ess3.api.events.UserBalanceUpdateEvent) Method(com.earth2me.essentials.register.payment.Method) BigDecimal(java.math.BigDecimal) MaxMoneyException(net.ess3.api.MaxMoneyException)

Aggregations

Method (com.earth2me.essentials.register.payment.Method)2 BigDecimal (java.math.BigDecimal)2 MaxMoneyException (net.ess3.api.MaxMoneyException)2 UserBalanceUpdateEvent (net.ess3.api.events.UserBalanceUpdateEvent)2