mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-12-01 06:23:22 +01:00
c3b084fd1a
- Added shop refund message - Recoded Register for ChestShop - Added VAULT support (Register is used when no Vault is found) - Added Heroes exp option for granting exp for shop creation - EXPERIMENTAL: Option to cause BlockState.update() every transaction (probably doesn't work, as Block.applyPhysics() is needed) - Added ChestShop.nofee permission for free shop creation (and no refunds) - Added a separate Admin Shop tax option -
14 lines
394 B
Java
14 lines
394 B
Java
package com.Acrobot.ChestShop.Economy;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public interface EcoPlugin {
|
|
public boolean hasAccount(String player);
|
|
public void add(String player, double amount);
|
|
public void subtract(String player, double amount);
|
|
public boolean hasEnough(String player, double amount);
|
|
public double balance(String player);
|
|
public String format(double amount);
|
|
}
|