Hello, is there a way with economy API to remove money to an offline Player?
Currency currency;
BigDecimal amount;
EconomyService service;
UUID accountId;
UniqueAccount account = account
.findOrCreateAccount(accountId)
.get(); //dont use .get() without checking if present. Just an example
TransactionResult result = account
.withdraw(currency, amount);