summaryrefslogtreecommitdiffstats
path: root/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system')
-rw-r--r--EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java66
-rw-r--r--EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java65
2 files changed, 66 insertions, 65 deletions
diff --git a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java
index 740b31f58..a4a48b2ca 100644
--- a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java
+++ b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java
@@ -1,6 +1,6 @@
package com.nijiko.coelho.iConomy.system;
-import com.earth2me.essentials.EcoAPI;
+import com.earth2me.essentials.api.Economy;
import com.nijiko.coelho.iConomy.existCheck;
@@ -8,13 +8,15 @@ public class Account
{
private String name;
- //Fake getname
public String getName()
{
return name;
}
- //Essentials doesnt have hidden accounts so just say yeah whatever!
+ /**
+ * Essentials does not support hidden accounts.
+ * @return false
+ */
public boolean setHidden(boolean hidden)
{
return true;
@@ -26,122 +28,118 @@ public class Account
this.name = name;
}
- //Fake return balance
public double getBalance()
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- return EcoAPI.getMoney(name);
+ return Economy.getMoney(name);
}
return 0;
}
- return EcoAPI.getMoney(name);
+ return Economy.getMoney(name);
}
- //Fake Set balance
public void setBalance(double bal)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.setMoney(name, bal);
+ Economy.setMoney(name, bal);
}
return;
}
- EcoAPI.setMoney(name, bal);
+ Economy.setMoney(name, bal);
}
- //Fake add balance
public void add(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.add(name, money);
+ Economy.add(name, money);
}
return;
}
- EcoAPI.add(name, money);
+ Economy.add(name, money);
}
- //Fake divide balance
public void divide(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.divide(name, money);
+ Economy.divide(name, money);
}
return;
}
- EcoAPI.divide(name, money);
+ Economy.divide(name, money);
}
- //Fake multiply balance
public void multiply(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.multiply(name, money);
+ Economy.multiply(name, money);
}
return;
}
- EcoAPI.multiply(name, money);
+ Economy.multiply(name, money);
}
- //Fake subtract balance
public void subtract(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.subtract(name, money);
+ Economy.subtract(name, money);
}
return;
}
- EcoAPI.subtract(name, money);
+ Economy.subtract(name, money);
}
- //fake reset balance!
public void resetBalance()
{
this.setBalance(0);
}
- //fake bal check
public boolean hasEnough(double amount)
{
return amount <= this.getBalance();
}
- //fake another balance check
public boolean hasOver(double amount)
{
return amount < this.getBalance();
}
- //Again we dont have hidden accounts here!
+ /**
+ * Essentials does not support hidden accounts.
+ * @return false
+ */
public boolean isHidden()
{
return false;
}
- //Fake is negative check!
public boolean isNegative()
{
return this.getBalance() < 0.0;
}
- //Because some plugins like to use depricated methods I must save
- //admins' log from the overflow of dumb
+ /**
+ * Because some plugins like to use depricated methods I must save
+ * admins' log from the overflow of dumb
+ */
+ @Deprecated
public void save()
{
}
diff --git a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java
index b70803dda..54e8e6387 100644
--- a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java
+++ b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java
@@ -1,53 +1,56 @@
package com.nijiko.coelho.iConomy.system;
-import com.earth2me.essentials.EcoAPI;
+import com.earth2me.essentials.api.Economy;
import com.nijiko.coelho.iConomy.existCheck;
-public class Bank {
-
- //The fake formatter
-
- public String format(double amount) {
- return EcoAPI.format(amount);
- }
+public class Bank
+{
+ //The fake formatter
+ public String format(double amount)
+ {
+ return Economy.format(amount);
+ }
//Fake currency!
-
- public String getCurrency() {
- return EcoAPI.getCurrency();
- }
+ public String getCurrency()
+ {
+ return Economy.getCurrency();
+ }
//Fake "does player have an account?" but essentials eco doesnt need to make one, so TRUE, unless its an NPC.
-
- public boolean hasAccount(String account) {
- if (!existCheck.exist(account)){
- if (!EcoAPI.accountExist(account)){
- EcoAPI.newAccount(account);
- }
+ public boolean hasAccount(String account)
+ {
+ if (!existCheck.exist(account))
+ {
+ if (!Economy.accountExist(account))
+ {
+ Economy.newAccount(account);
+ }
}
return true;
}
-
+
//simply switches the name to an account type?
-
- public Account getAccount(String name){
- Account Account=null;
- Account=new Account(name);
+ public Account getAccount(String name)
+ {
+ Account Account = null;
+ Account = new Account(name);
hasAccount(name);
return Account;
}
-
+
//Fake remove account
-
- public void removeAccount(String name){
- if (!existCheck.exist(name)){
- if (EcoAPI.accountExist(name)){
- EcoAPI.removeAccount(name);
+ public void removeAccount(String name)
+ {
+ if (!existCheck.exist(name))
+ {
+ if (Economy.accountExist(name))
+ {
+ Economy.removeAccount(name);
}
return;
}
- EcoAPI.setMoney(name, 0);
+ Economy.setMoney(name, 0);
}
-
}