2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.Board;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.FLocation;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Faction;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.struct.Role;
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public class CmdSethome extends FCommand
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
2011-10-09 20:10:19 +02:00
|
|
|
public CmdSethome()
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
|
|
|
this.aliases.add("sethome");
|
|
|
|
|
|
|
|
//this.requiredArgs.add("");
|
|
|
|
this.optionalArgs.put("faction tag", "mine");
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
this.permission = Permission.SETHOME.node;
|
|
|
|
this.disableOnLock = true;
|
2011-07-20 22:42:51 +02:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = false;
|
2011-03-23 17:39:56 +01:00
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 18:35:39 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
|
|
|
if ( ! Conf.homesEnabled)
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
fme.msg("<b>Sorry, Faction homes are disabled on this server.");
|
2011-03-23 17:39:56 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
Faction faction = this.argAsFaction(0, myFaction);
|
|
|
|
if (faction == null) return;
|
2011-07-20 22:42:51 +02:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
// Can the player set the home for this faction?
|
|
|
|
if (faction == myFaction)
|
|
|
|
{
|
2011-10-09 21:57:43 +02:00
|
|
|
if ( ! Permission.SETHOME_ANY.has(sender) && ! assertMinRole(Role.MODERATOR)) return;
|
2011-10-09 18:35:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-27 01:28:48 +02:00
|
|
|
if ( ! Permission.SETHOME_ANY.has(sender, true)) return;
|
2011-07-20 22:42:51 +02:00
|
|
|
}
|
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
// Can the player set the faction home HERE?
|
|
|
|
if
|
|
|
|
(
|
2011-10-09 21:57:43 +02:00
|
|
|
! Permission.BYPASS.has(me)
|
2011-10-09 18:35:39 +02:00
|
|
|
&&
|
|
|
|
Conf.homesMustBeInClaimedTerritory
|
|
|
|
&&
|
|
|
|
Board.getFactionAt(new FLocation(me)) != faction
|
|
|
|
)
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
fme.msg("<b>Sorry, your faction home can only be set inside your own claimed territory.");
|
2011-06-19 10:56:21 +02:00
|
|
|
return;
|
|
|
|
}
|
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, they're not on the bypass list, and this command has a cost set, make 'em pay
|
2011-10-12 18:48:47 +02:00
|
|
|
if ( ! payForCommand(Conf.econCostSethome, "to set the faction home", "for setting the faction home")) return;
|
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-10-09 18:35:39 +02:00
|
|
|
faction.setHome(me.getLocation());
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-10-21 19:20:33 +02:00
|
|
|
faction.msg("%s<i> set the home for your faction. You can now use:", fme.describeTo(myFaction, true));
|
2011-10-10 01:21:05 +02:00
|
|
|
faction.sendMessage(p.cmdBase.cmdHome.getUseageTemplate());
|
2011-10-09 18:35:39 +02:00
|
|
|
if (faction != myFaction)
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
fme.msg("<b>You have set the home for the "+faction.getTag(fme)+"<i> faction.");
|
2011-07-20 22:42:51 +02:00
|
|
|
}
|
2011-03-23 17:39:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|