Factions/src/com/massivecraft/factions/cmd/CmdFactionsSethome.java

68 lines
1.9 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-03-23 17:39:56 +01:00
import com.massivecraft.factions.BoardColl;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer;
import com.massivecraft.factions.FPerm;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.Perm;
2013-04-16 11:05:49 +02:00
import com.massivecraft.factions.cmd.arg.ARFaction;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
import com.massivecraft.mcore.cmd.req.ReqIsPlayer;
import com.massivecraft.mcore.ps.PS;
2011-03-23 17:39:56 +01:00
2013-04-10 13:12:22 +02:00
public class CmdFactionsSethome extends FCommand
2011-10-09 18:35:39 +02:00
{
2013-04-10 13:12:22 +02:00
public CmdFactionsSethome()
2011-10-09 18:35:39 +02:00
{
2013-04-16 10:11:59 +02:00
this.addAliases("sethome");
2011-10-09 18:35:39 +02:00
this.addOptionalArg("faction", "you");
this.addRequirements(ReqIsPlayer.get());
this.addRequirements(ReqHasPerm.get(Perm.SETHOME.node));
2011-03-23 17:39:56 +01:00
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
2013-04-09 13:15:25 +02:00
if ( ! ConfServer.homesEnabled)
2011-10-09 18:35:39 +02:00
{
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;
}
2013-04-16 11:05:49 +02:00
Faction faction = this.arg(0, ARFaction.get(), myFaction);
2011-10-09 18:35:39 +02:00
if (faction == null) return;
2011-10-09 18:35:39 +02:00
// Can the player set the home for this faction?
if ( ! FPerm.SETHOME.has(sender, faction, true)) return;
2011-10-09 18:35:39 +02:00
// Can the player set the faction home HERE?
if
(
! fme.hasAdminMode()
2011-10-09 18:35:39 +02:00
&&
2013-04-09 13:15:25 +02:00
ConfServer.homesMustBeInClaimedTerritory
2011-10-09 18:35:39 +02:00
&&
BoardColl.get().getFactionAt(PS.valueOf(me)) != faction
2011-10-09 18:35:39 +02:00
)
{
2011-10-10 13:40:24 +02:00
fme.msg("<b>Sorry, your faction home can only be set inside your own claimed territory.");
return;
}
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2013-04-09 13:15:25 +02:00
if ( ! payForCommand(ConfServer.econCostSethome, "to set the faction home", "for setting the faction home")) return;
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));
2013-04-10 13:12:22 +02:00
faction.sendMessage(p.cmdBase.cmdFactionsHome.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-03-23 17:39:56 +01:00
}
}