Example #1
0
File: API.java Project: OdiumxXx/Fe
 public String getCurrencyMinorMultiple() {
   return plugin.getConfig().getString("currency.minor.multiple");
 }
Example #2
0
File: API.java Project: OdiumxXx/Fe
 public boolean isMinorCurrencyEnabled() {
   return plugin.getConfig().getBoolean("currency.minor.enabled");
 }
Example #3
0
File: API.java Project: OdiumxXx/Fe
 public String getCurrencyMinorSingle() {
   return plugin.getConfig().getString("currency.minor.single");
 }
Example #4
0
File: API.java Project: OdiumxXx/Fe
 public boolean isCurrencyNegative() {
   return plugin.getConfig().getBoolean("currency.negative");
 }
Example #5
0
File: API.java Project: OdiumxXx/Fe
 public String getCurrencyPrefix() {
   return plugin.getConfig().getString("currency.prefix");
 }
Example #6
0
File: API.java Project: OdiumxXx/Fe
 public double getMaxHoldings() {
   return plugin.getConfig().getDouble("maxholdings");
 }
Example #7
0
File: API.java Project: OdiumxXx/Fe
 public double getDefaultHoldings() {
   return plugin.getConfig().getDouble("holdings");
 }
Example #8
0
File: API.java Project: OdiumxXx/Fe
 public List<Account> getTopAccounts() {
   return plugin.getFeDatabase().getTopAccounts(plugin.getConfig().getInt("topsize"));
 }