Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
package com.massivecraft.factions;
|
|
|
|
|
|
|
|
import org.bukkit.event.Event;
|
2011-08-08 11:51:06 +02:00
|
|
|
import org.bukkit.plugin.Plugin;
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
|
|
|
import com.massivecraft.factions.listeners.FactionsServerListener;
|
Some tweaking of the faction bank code...
The new help page with bank related commands will now only be shown if banks are enabled and the Economy is enabled and hooked in.
Shortened a couple of command descriptions to fit on one line.
Made Deposit, Pay, and Withdraw commands additionally log to the server console/log.
When bank is given to person disbanding a faction, it now lets them know and logs it to the server log.
Added commands to commandDisable list in plugin.yml, along with "permanent" command which I'd missed adding before
Added new permission node factions.viewAnyFactionBalance (granted by default if using superperms), which is required to view the bank balance of other factions
For reference, about the faction bank addition as a whole...
New conf.json settings:
"bankEnabled": true, - enable faction banks
"bankMembersCanWithdraw": false, - have to be at least moderator to withdraw or pay money to another faction, unless this is set to true
"bankFactionPaysCosts": true, - if true, payments for faction command costs are charged to faction bank
"bankFactionPaysLandCosts": true, - if true, payments for land claims are charged to faction bank
New commands:
/f balance *<faction tag> - Shows the bank balance of a specified faction (if permission checks out), or the player's faction if none is specified
/f deposit <amount> - Deposit money into your faction's bank
/f pay <faction tag> <amount> - Pay money from your faction bank to another faction (requires moderator or admin status)
/f withdraw <amount> - Withdraw money from your faction's bank (requires moderator or admin status, unless "bankMembersCanWithdraw" is set to true)
New permission node:
factions.viewAnyFactionBalance - Allows the player to view the faction bank balance of all factions (default)
2011-10-01 12:59:09 +02:00
|
|
|
import com.massivecraft.factions.commands.FCommandHelp;
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
2011-08-04 09:25:12 +02:00
|
|
|
import com.earth2me.essentials.api.Economy;
|
2011-09-22 11:22:24 +02:00
|
|
|
import com.nijikokun.register.payment.Methods;
|
|
|
|
import com.nijikokun.register.payment.Method.MethodAccount;
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
import com.iConomy.*;
|
|
|
|
import com.iConomy.system.*;
|
|
|
|
|
|
|
|
|
|
|
|
public class Econ {
|
2011-09-22 11:22:24 +02:00
|
|
|
private static boolean registerUse = false;
|
2011-08-04 09:25:12 +02:00
|
|
|
private static boolean iConomyUse = false;
|
|
|
|
private static boolean essEcoUse = false;
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
|
|
|
public static void monitorPlugins() {
|
|
|
|
Factions.instance.getServer().getPluginManager().registerEvent(Event.Type.PLUGIN_ENABLE, new FactionsServerListener(), Event.Priority.Monitor, Factions.instance);
|
|
|
|
Factions.instance.getServer().getPluginManager().registerEvent(Event.Type.PLUGIN_DISABLE, new FactionsServerListener(), Event.Priority.Monitor, Factions.instance);
|
|
|
|
}
|
|
|
|
|
2011-08-08 11:51:06 +02:00
|
|
|
public static void setup(Factions factions) {
|
|
|
|
if (enabled()) {
|
|
|
|
return;
|
|
|
|
}
|
2011-08-20 02:41:28 +02:00
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
if (!registerHooked()) {
|
|
|
|
Plugin plug = factions.getServer().getPluginManager().getPlugin("Register");
|
|
|
|
if (plug != null && plug.getClass().getName().equals("com.nijikokun.register.Register") && plug.isEnabled()) {
|
|
|
|
registerSet(true);
|
|
|
|
}
|
|
|
|
}
|
2011-08-20 02:41:28 +02:00
|
|
|
if (!iConomyHooked()) {
|
2011-08-08 11:51:06 +02:00
|
|
|
Plugin plug = factions.getServer().getPluginManager().getPlugin("iConomy");
|
|
|
|
if (plug != null && plug.getClass().getName().equals("com.iConomy.iConomy") && plug.isEnabled()) {
|
|
|
|
iConomySet(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!essentialsEcoHooked()) {
|
|
|
|
Plugin plug = factions.getServer().getPluginManager().getPlugin("Essentials");
|
|
|
|
if (plug != null && plug.isEnabled()) {
|
|
|
|
essentialsEcoSet(true);
|
|
|
|
}
|
2011-08-20 02:41:28 +02:00
|
|
|
}
|
2011-08-08 11:51:06 +02:00
|
|
|
}
|
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
public static void registerSet(boolean enable) {
|
|
|
|
registerUse = enable;
|
|
|
|
if (enable) {
|
|
|
|
Factions.log("Register hook available, "+(Conf.econRegisterEnabled ? "and interface is enabled" : "but disabled (\"econRegisterEnabled\": false)")+".");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Factions.log("Un-hooked from Register.");
|
|
|
|
}
|
Some tweaking of the faction bank code...
The new help page with bank related commands will now only be shown if banks are enabled and the Economy is enabled and hooked in.
Shortened a couple of command descriptions to fit on one line.
Made Deposit, Pay, and Withdraw commands additionally log to the server console/log.
When bank is given to person disbanding a faction, it now lets them know and logs it to the server log.
Added commands to commandDisable list in plugin.yml, along with "permanent" command which I'd missed adding before
Added new permission node factions.viewAnyFactionBalance (granted by default if using superperms), which is required to view the bank balance of other factions
For reference, about the faction bank addition as a whole...
New conf.json settings:
"bankEnabled": true, - enable faction banks
"bankMembersCanWithdraw": false, - have to be at least moderator to withdraw or pay money to another faction, unless this is set to true
"bankFactionPaysCosts": true, - if true, payments for faction command costs are charged to faction bank
"bankFactionPaysLandCosts": true, - if true, payments for land claims are charged to faction bank
New commands:
/f balance *<faction tag> - Shows the bank balance of a specified faction (if permission checks out), or the player's faction if none is specified
/f deposit <amount> - Deposit money into your faction's bank
/f pay <faction tag> <amount> - Pay money from your faction bank to another faction (requires moderator or admin status)
/f withdraw <amount> - Withdraw money from your faction's bank (requires moderator or admin status, unless "bankMembersCanWithdraw" is set to true)
New permission node:
factions.viewAnyFactionBalance - Allows the player to view the faction bank balance of all factions (default)
2011-10-01 12:59:09 +02:00
|
|
|
FCommandHelp.updateHelp();
|
2011-09-22 11:22:24 +02:00
|
|
|
}
|
|
|
|
|
2011-08-04 09:25:12 +02:00
|
|
|
public static void iConomySet(boolean enable) {
|
|
|
|
iConomyUse = enable;
|
2011-09-22 11:22:24 +02:00
|
|
|
if (enable && !registerUse) {
|
2011-08-20 02:41:28 +02:00
|
|
|
Factions.log("iConomy hook available, "+(Conf.econIConomyEnabled ? "and interface is enabled" : "but disabled (\"econIConomyEnabled\": false)")+".");
|
2011-08-04 09:25:12 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
Factions.log("Un-hooked from iConomy.");
|
|
|
|
}
|
Some tweaking of the faction bank code...
The new help page with bank related commands will now only be shown if banks are enabled and the Economy is enabled and hooked in.
Shortened a couple of command descriptions to fit on one line.
Made Deposit, Pay, and Withdraw commands additionally log to the server console/log.
When bank is given to person disbanding a faction, it now lets them know and logs it to the server log.
Added commands to commandDisable list in plugin.yml, along with "permanent" command which I'd missed adding before
Added new permission node factions.viewAnyFactionBalance (granted by default if using superperms), which is required to view the bank balance of other factions
For reference, about the faction bank addition as a whole...
New conf.json settings:
"bankEnabled": true, - enable faction banks
"bankMembersCanWithdraw": false, - have to be at least moderator to withdraw or pay money to another faction, unless this is set to true
"bankFactionPaysCosts": true, - if true, payments for faction command costs are charged to faction bank
"bankFactionPaysLandCosts": true, - if true, payments for land claims are charged to faction bank
New commands:
/f balance *<faction tag> - Shows the bank balance of a specified faction (if permission checks out), or the player's faction if none is specified
/f deposit <amount> - Deposit money into your faction's bank
/f pay <faction tag> <amount> - Pay money from your faction bank to another faction (requires moderator or admin status)
/f withdraw <amount> - Withdraw money from your faction's bank (requires moderator or admin status, unless "bankMembersCanWithdraw" is set to true)
New permission node:
factions.viewAnyFactionBalance - Allows the player to view the faction bank balance of all factions (default)
2011-10-01 12:59:09 +02:00
|
|
|
FCommandHelp.updateHelp();
|
2011-08-04 09:25:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void essentialsEcoSet(boolean enable) {
|
|
|
|
essEcoUse = enable;
|
2011-09-22 11:22:24 +02:00
|
|
|
if (enable && !registerUse) {
|
2011-08-20 02:41:28 +02:00
|
|
|
Factions.log("EssentialsEco hook available, "+(Conf.econEssentialsEcoEnabled ? "and interface is enabled" : "but disabled (\"econEssentialsEcoEnabled\": false)")+".");
|
2011-08-04 09:25:12 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
Factions.log("Un-hooked from EssentialsEco.");
|
|
|
|
}
|
Some tweaking of the faction bank code...
The new help page with bank related commands will now only be shown if banks are enabled and the Economy is enabled and hooked in.
Shortened a couple of command descriptions to fit on one line.
Made Deposit, Pay, and Withdraw commands additionally log to the server console/log.
When bank is given to person disbanding a faction, it now lets them know and logs it to the server log.
Added commands to commandDisable list in plugin.yml, along with "permanent" command which I'd missed adding before
Added new permission node factions.viewAnyFactionBalance (granted by default if using superperms), which is required to view the bank balance of other factions
For reference, about the faction bank addition as a whole...
New conf.json settings:
"bankEnabled": true, - enable faction banks
"bankMembersCanWithdraw": false, - have to be at least moderator to withdraw or pay money to another faction, unless this is set to true
"bankFactionPaysCosts": true, - if true, payments for faction command costs are charged to faction bank
"bankFactionPaysLandCosts": true, - if true, payments for land claims are charged to faction bank
New commands:
/f balance *<faction tag> - Shows the bank balance of a specified faction (if permission checks out), or the player's faction if none is specified
/f deposit <amount> - Deposit money into your faction's bank
/f pay <faction tag> <amount> - Pay money from your faction bank to another faction (requires moderator or admin status)
/f withdraw <amount> - Withdraw money from your faction's bank (requires moderator or admin status, unless "bankMembersCanWithdraw" is set to true)
New permission node:
factions.viewAnyFactionBalance - Allows the player to view the faction bank balance of all factions (default)
2011-10-01 12:59:09 +02:00
|
|
|
FCommandHelp.updateHelp();
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
public static boolean registerHooked() {
|
|
|
|
return registerUse;
|
|
|
|
}
|
|
|
|
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
public static boolean iConomyHooked() {
|
2011-08-04 09:25:12 +02:00
|
|
|
return iConomyUse;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean essentialsEcoHooked() {
|
|
|
|
return essEcoUse;
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
public static boolean registerAvailable() {
|
|
|
|
return Conf.econRegisterEnabled && registerUse && Methods.hasMethod();
|
|
|
|
}
|
|
|
|
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
// If economy is enabled in conf.json, and we're successfully hooked into an economy plugin
|
|
|
|
public static boolean enabled() {
|
2011-09-22 11:22:24 +02:00
|
|
|
return (Conf.econRegisterEnabled && registerUse && Methods.hasMethod())
|
|
|
|
|| (Conf.econIConomyEnabled && iConomyUse)
|
|
|
|
|| (Conf.econEssentialsEcoEnabled && essEcoUse);
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// mainly for internal use, for a little less code repetition
|
|
|
|
public static Holdings getIconomyHoldings(String playerName) {
|
|
|
|
if (!enabled()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
Account account = iConomy.getAccount(playerName);
|
|
|
|
if (account == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
Holdings holdings = account.getHoldings();
|
|
|
|
return holdings;
|
|
|
|
}
|
2011-09-22 11:22:24 +02:00
|
|
|
public static MethodAccount getRegisterAccount(String playerName) {
|
|
|
|
if (!enabled()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (!Methods.getMethod().hasAccount(playerName)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
MethodAccount account = Methods.getMethod().getAccount(playerName);
|
|
|
|
return account;
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
// format money string based on server's set currency type, like "24 gold" or "$24.50"
|
|
|
|
public static String moneyString(double amount) {
|
2011-09-22 11:22:24 +02:00
|
|
|
return registerAvailable() ? Methods.getMethod().format(amount)
|
|
|
|
: (iConomyUse ? iConomy.format(amount) : Economy.format(amount));
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// whether a player can afford specified amount
|
|
|
|
public static boolean canAfford(String playerName, double amount) {
|
|
|
|
// if Economy support is not enabled, they can certainly afford to pay nothing
|
|
|
|
if (!enabled()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
if (registerAvailable()) {
|
|
|
|
MethodAccount holdings = getRegisterAccount(playerName);
|
|
|
|
if (holdings == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return holdings.hasEnough(amount);
|
|
|
|
}
|
|
|
|
else if (iConomyUse) {
|
2011-08-04 09:25:12 +02:00
|
|
|
Holdings holdings = getIconomyHoldings(playerName);
|
|
|
|
if (holdings == null) {
|
|
|
|
return false;
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
2011-08-04 09:25:12 +02:00
|
|
|
return holdings.hasEnough(amount);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
try {
|
|
|
|
return Economy.hasEnough(playerName, amount);
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// deduct money from their account; returns true if successful
|
|
|
|
public static boolean deductMoney(String playerName, double amount) {
|
|
|
|
if (!enabled()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
if (registerAvailable()) {
|
|
|
|
MethodAccount holdings = getRegisterAccount(playerName);
|
|
|
|
if (holdings == null || !holdings.hasEnough(amount)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return holdings.subtract(amount);
|
|
|
|
}
|
|
|
|
else if (iConomyUse) {
|
2011-08-04 09:25:12 +02:00
|
|
|
Holdings holdings = getIconomyHoldings(playerName);
|
|
|
|
if (holdings == null || !holdings.hasEnough(amount)) {
|
|
|
|
return false;
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
2011-08-04 09:25:12 +02:00
|
|
|
holdings.subtract(amount);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
try {
|
|
|
|
if (!Economy.hasEnough(playerName, amount)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Economy.subtract(playerName, amount);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// add money to their account; returns true if successful
|
|
|
|
public static boolean addMoney(String playerName, double amount) {
|
|
|
|
if (!enabled()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-22 11:22:24 +02:00
|
|
|
if (registerAvailable()) {
|
|
|
|
MethodAccount holdings = getRegisterAccount(playerName);
|
|
|
|
if (holdings == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return holdings.add(amount);
|
|
|
|
}
|
|
|
|
else if (iConomyUse) {
|
2011-08-04 09:25:12 +02:00
|
|
|
Holdings holdings = getIconomyHoldings(playerName);
|
|
|
|
if (holdings == null) {
|
|
|
|
return false;
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
2011-08-04 09:25:12 +02:00
|
|
|
holdings.add(amount);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
try {
|
|
|
|
Economy.add(playerName, amount);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// calculate the cost for claiming land
|
|
|
|
public static double calculateClaimCost(int ownedLand, boolean takingFromAnotherFaction) {
|
|
|
|
if (!enabled()) {
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// basic claim cost, plus land inflation cost, minus the potential bonus given for claiming from another faction
|
|
|
|
return Conf.econCostClaimWilderness
|
|
|
|
+ (Conf.econCostClaimWilderness * Conf.econClaimAdditionalMultiplier * ownedLand)
|
|
|
|
- (takingFromAnotherFaction ? Conf.econCostClaimFromFactionBonus: 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate refund amount for unclaiming land
|
|
|
|
public static double calculateClaimRefund(int ownedLand) {
|
|
|
|
return calculateClaimCost(ownedLand - 1, false) * Conf.econClaimRefundMultiplier;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate value of all owned land
|
|
|
|
public static double calculateTotalLandValue(int ownedLand) {
|
|
|
|
double amount = 0;
|
|
|
|
for (int x = 0; x < ownedLand; x++) {
|
|
|
|
amount += calculateClaimCost(x, false);
|
|
|
|
}
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate refund amount for all owned land
|
|
|
|
public static double calculateTotalLandRefund(int ownedLand) {
|
|
|
|
return calculateTotalLandValue(ownedLand) * Conf.econClaimRefundMultiplier;
|
|
|
|
}
|
|
|
|
}
|