mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-10 21:01:03 +01:00
Update Vault to use the Dosh plugin
This commit is contained in:
parent
c497edc557
commit
7cad26e191
BIN
lib/Dosh.jar
Normal file
BIN
lib/Dosh.jar
Normal file
Binary file not shown.
@ -42,6 +42,7 @@ import net.milkbowl.vault.economy.plugins.Economy_BOSE7;
|
|||||||
import net.milkbowl.vault.economy.plugins.Economy_Craftconomy;
|
import net.milkbowl.vault.economy.plugins.Economy_Craftconomy;
|
||||||
import net.milkbowl.vault.economy.plugins.Economy_Craftconomy3;
|
import net.milkbowl.vault.economy.plugins.Economy_Craftconomy3;
|
||||||
import net.milkbowl.vault.economy.plugins.Economy_CurrencyCore;
|
import net.milkbowl.vault.economy.plugins.Economy_CurrencyCore;
|
||||||
|
import net.milkbowl.vault.economy.plugins.Economy_Dosh;
|
||||||
import net.milkbowl.vault.economy.plugins.Economy_EconXP;
|
import net.milkbowl.vault.economy.plugins.Economy_EconXP;
|
||||||
import net.milkbowl.vault.economy.plugins.Economy_Essentials;
|
import net.milkbowl.vault.economy.plugins.Economy_Essentials;
|
||||||
import net.milkbowl.vault.economy.plugins.Economy_GoldIsMoney;
|
import net.milkbowl.vault.economy.plugins.Economy_GoldIsMoney;
|
||||||
@ -248,6 +249,8 @@ public class Vault extends JavaPlugin {
|
|||||||
// Try to load GoldIsMoney2
|
// Try to load GoldIsMoney2
|
||||||
hookEconomy("GoldIsMoney2", Economy_GoldIsMoney2.class, ServicePriority.Normal, "com.flobi.GoldIsMoney2.GoldIsMoney");
|
hookEconomy("GoldIsMoney2", Economy_GoldIsMoney2.class, ServicePriority.Normal, "com.flobi.GoldIsMoney2.GoldIsMoney");
|
||||||
|
|
||||||
|
// Try to load Dosh
|
||||||
|
hookEconomy("Dosh", Economy_Dosh.class, ServicePriority.Normal, "com.gravypod.Dosh.Dosh");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
155
src/net/milkbowl/vault/economy/plugins/Economy_Dosh.java
Normal file
155
src/net/milkbowl/vault/economy/plugins/Economy_Dosh.java
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
package net.milkbowl.vault.economy.plugins;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
|
import com.gravypod.Dosh.Dosh;
|
||||||
|
import com.gravypod.Dosh.MoneyUtils;
|
||||||
|
|
||||||
|
import net.milkbowl.vault.economy.Economy;
|
||||||
|
import net.milkbowl.vault.economy.EconomyResponse;
|
||||||
|
|
||||||
|
|
||||||
|
public class Economy_Dosh implements Economy {
|
||||||
|
|
||||||
|
|
||||||
|
Plugin plugin;
|
||||||
|
Dosh doshPlugin;
|
||||||
|
boolean isEnabled = false;
|
||||||
|
DoshAPIHandler apiHandle;
|
||||||
|
|
||||||
|
public Economy_Dosh(Plugin _plugin) {
|
||||||
|
|
||||||
|
plugin = _plugin;
|
||||||
|
|
||||||
|
if (plugin.getServer().getPluginManager().isPluginEnabled("Dosh")) {
|
||||||
|
doshPlugin = (Dosh) plugin.getServer().getPluginManager().getPlugin("Dosh");
|
||||||
|
apiHandle = new DoshAPIHandler();
|
||||||
|
isEnabled = true;
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isEnabled() {
|
||||||
|
return isEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() {
|
||||||
|
return "Dosh";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasBankSupport() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int fractionalDigits() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String format(double amount) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String currencyNamePlural() {
|
||||||
|
return Dosh.getSettings().moneyName + "s";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String currencyNameSingular() {
|
||||||
|
return Dosh.getSettings().moneyName;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasAccount(String playerName) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public double getBalance(String playerName) {
|
||||||
|
return DoshAPIHandler.getUserBal(playerName);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean has(String playerName, double amount) {
|
||||||
|
return (getBalance(playerName) - amount) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse withdrawPlayer(String playerName, double amount) {
|
||||||
|
|
||||||
|
if (DoshAPIHandler.subtractMoney(playerName, amount)) {
|
||||||
|
return new EconomyResponse(amount, getBalance(playerName), EconomyResponse.ResponseType.SUCCESS, "Worked!");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new EconomyResponse(amount, getBalance(playerName), EconomyResponse.ResponseType.FAILURE, "Didnt work!");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse depositPlayer(String playerName, double amount) {
|
||||||
|
DoshAPIHandler.addUserBal(playerName, amount);
|
||||||
|
return new EconomyResponse(amount, getBalance(playerName), EconomyResponse.ResponseType.SUCCESS, "It worked!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse createBank(String name, String player) {
|
||||||
|
return new EconomyResponse(0D, 0D, EconomyResponse.ResponseType.NOT_IMPLEMENTED, "We do not use banks!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse deleteBank(String name) {
|
||||||
|
return new EconomyResponse(0D, 0D, EconomyResponse.ResponseType.NOT_IMPLEMENTED, "We do not use banks!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse bankBalance(String name) {
|
||||||
|
return new EconomyResponse(0D, 0D, EconomyResponse.ResponseType.NOT_IMPLEMENTED, "We do not use banks!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse bankHas(String name, double amount) {
|
||||||
|
return new EconomyResponse(0D, 0D, EconomyResponse.ResponseType.NOT_IMPLEMENTED, "We do not use banks!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse bankWithdraw(String name, double amount) {
|
||||||
|
return new EconomyResponse(0D, 0D, EconomyResponse.ResponseType.NOT_IMPLEMENTED, "We do not use banks!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse bankDeposit(String name, double amount) {
|
||||||
|
return new EconomyResponse(0D, 0D, EconomyResponse.ResponseType.NOT_IMPLEMENTED, "We do not use banks!");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse isBankOwner(String name, String playerName) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EconomyResponse isBankMember(String name, String playerName) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> getBanks() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean createPlayerAccount(String playerName) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DoshAPIHandler extends MoneyUtils {}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user