Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdSethome.java

73 lines
2.3 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
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
2014-04-04 20:55:21 +02:00
public class CmdSethome extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdSethome() {
this.aliases.add("sethome");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
this.optionalArgs.put("faction tag", "mine");
2014-07-01 22:10:18 +02:00
this.permission = Permission.SETHOME.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
}
@Override
public void perform() {
if (!Conf.homesEnabled) {
2014-07-01 22:10:18 +02:00
fme.msg("<b>Sorry, Faction homes are disabled on this server.");
return;
2014-04-04 20:55:21 +02:00
}
2014-07-01 22:10:18 +02:00
Faction faction = this.argAsFaction(0, myFaction);
if (faction == null) {
return;
}
2014-04-04 20:55:21 +02:00
// Can the player set the home for this faction?
if (faction == myFaction) {
2014-07-01 22:10:18 +02:00
if (!Permission.SETHOME_ANY.has(sender) && !assertMinRole(Role.MODERATOR)) {
return;
}
2014-07-01 21:52:40 +02:00
} else {
2014-07-01 22:10:18 +02:00
if (!Permission.SETHOME_ANY.has(sender, true)) {
return;
}
2014-04-04 20:55:21 +02:00
}
// Can the player set the faction home HERE?
2014-07-01 21:52:40 +02:00
if (!Permission.BYPASS.has(me) &&
Conf.homesMustBeInClaimedTerritory &&
Board.getInstance().getFactionAt(new FLocation(me)) != faction) {
2014-07-01 22:10:18 +02:00
fme.msg("<b>Sorry, your faction home can only be set inside your own claimed territory.");
return;
2014-04-04 20:55:21 +02:00
}
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2014-07-01 22:10:18 +02:00
if (!payForCommand(Conf.econCostSethome, "to set the faction home", "for setting the faction home")) {
return;
}
2014-04-04 20:55:21 +02:00
faction.setHome(me.getLocation());
faction.msg("%s<i> set the home for your faction. You can now use:", fme.describeTo(myFaction, true));
2014-07-01 22:10:18 +02:00
faction.sendMessage(p.cmdBase.cmdHome.getUseageTemplate());
if (faction != myFaction) {
2014-04-04 20:55:21 +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
}