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;
|
2018-02-03 21:56:16 +01:00
|
|
|
import com.massivecraft.factions.zcore.fperms.Access;
|
|
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdSethome extends FCommand {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2019-03-03 04:51:21 +01:00
|
|
|
public CmdSethome() {
|
|
|
|
this.aliases.add("sethome");
|
|
|
|
|
|
|
|
//this.requiredArgs.add("");
|
|
|
|
this.optionalArgs.put("faction tag", "mine");
|
|
|
|
|
|
|
|
this.permission = Permission.SETHOME.node;
|
|
|
|
this.disableOnLock = true;
|
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeColeader = false;
|
|
|
|
senderMustBeAdmin = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
|
|
|
if (!Conf.homesEnabled) {
|
|
|
|
fme.msg(TL.COMMAND_SETHOME_DISABLED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Faction faction = this.argAsFaction(0, myFaction);
|
|
|
|
if (faction == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fme.isAdminBypassing()) {
|
|
|
|
Access access = myFaction.getAccess(fme, PermissableAction.SETHOME);
|
|
|
|
if (access != Access.ALLOW && fme.getRole() != Role.LEADER && !Permission.SETHOME_ANY.has(sender, true)) {
|
|
|
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "set home");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can the player set the faction home HERE?
|
|
|
|
if (!Permission.BYPASS.has(me) &&
|
|
|
|
Conf.homesMustBeInClaimedTerritory &&
|
|
|
|
Board.getInstance().getFactionAt(new FLocation(me)) != faction) {
|
|
|
|
fme.msg(TL.COMMAND_SETHOME_NOTCLAIMED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
|
|
|
|
if (!payForCommand(Conf.econCostSethome, TL.COMMAND_SETHOME_TOSET, TL.COMMAND_SETHOME_FORSET)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
faction.setHome(me.getLocation());
|
|
|
|
|
|
|
|
faction.msg(TL.COMMAND_SETHOME_SET, fme.describeTo(myFaction, true));
|
|
|
|
faction.sendMessage(p.cmdBase.cmdHome.getUseageTemplate());
|
|
|
|
if (faction != myFaction) {
|
|
|
|
fme.msg(TL.COMMAND_SETHOME_SETOTHER, faction.getTag(fme));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_SETHOME_DESCRIPTION;
|
|
|
|
}
|
2015-01-22 00:58:33 +01:00
|
|
|
|
2018-03-26 23:43:15 +02:00
|
|
|
}
|