2019-07-02 03:26:13 +02:00
|
|
|
package com.massivecraft.factions.cmd.alts;
|
2019-05-19 22:09:00 +02:00
|
|
|
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
2019-08-02 23:01:33 +02:00
|
|
|
import com.massivecraft.factions.P;
|
2019-07-02 03:26:13 +02:00
|
|
|
import com.massivecraft.factions.cmd.FCommand;
|
2019-05-19 22:09:00 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
import com.massivecraft.factions.zcore.fperms.Access;
|
|
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
import mkremins.fanciful.FancyMessage;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
|
|
|
|
public class CmdInviteAlt extends FCommand {
|
|
|
|
|
|
|
|
public CmdInviteAlt() {
|
|
|
|
super();
|
2019-05-23 02:12:46 +02:00
|
|
|
this.aliases.add("invite");
|
2019-05-19 22:09:00 +02:00
|
|
|
|
|
|
|
this.requiredArgs.add("player name");
|
|
|
|
// this.optionalArgs.put("", "");
|
|
|
|
|
|
|
|
this.permission = Permission.INVITE.node;
|
|
|
|
this.disableOnLock = true;
|
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
2019-05-25 01:36:03 +02:00
|
|
|
senderMustBeMember = true;
|
2019-05-19 22:09:00 +02:00
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeColeader = false;
|
|
|
|
senderMustBeAdmin = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
2019-08-24 19:18:50 +02:00
|
|
|
if (!P.p.getConfig().getBoolean("f-alts.Enabled", false)) {
|
2019-05-19 22:09:00 +02:00
|
|
|
fme.msg(TL.GENERIC_DISABLED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FPlayer target = this.argAsBestFPlayerMatch(0);
|
|
|
|
if (target == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target.getFaction() == myFaction) {
|
|
|
|
msg(TL.COMMAND_INVITE_ALREADYMEMBER, target.getName(), myFaction.getTag());
|
|
|
|
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.econCostInvite, TL.COMMAND_INVITE_TOINVITE.toString(), TL.COMMAND_INVITE_FORINVITE.toString())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-28 22:46:45 +02:00
|
|
|
if (!fme.isAdminBypassing()) {
|
|
|
|
Access access = myFaction.getAccess(fme, PermissableAction.INVITE);
|
|
|
|
if (access != Access.ALLOW && fme.getRole() != Role.LEADER) {
|
|
|
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage invites");
|
|
|
|
return;
|
|
|
|
}
|
2019-05-19 22:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (myFaction.isBanned(target)) {
|
|
|
|
fme.msg(TL.COMMAND_INVITE_BANNED, target.getName());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
myFaction.deinvite(target);
|
|
|
|
myFaction.altInvite(target);
|
|
|
|
if (!target.isOnline()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FancyMessage message = new FancyMessage(fme.describeTo(target, true))
|
|
|
|
.tooltip(TL.COMMAND_INVITE_CLICKTOJOIN.toString())
|
|
|
|
.command("/" + Conf.baseCommandAliases.get(0) + " join " + myFaction.getTag())
|
|
|
|
.then(TL.COMMAND_INVITE_INVITEDYOU.toString())
|
|
|
|
.color(ChatColor.YELLOW)
|
|
|
|
.tooltip(TL.COMMAND_INVITE_CLICKTOJOIN.toString())
|
|
|
|
.command("/" + Conf.baseCommandAliases.get(0) + " join " + myFaction.getTag())
|
|
|
|
.then(myFaction.describeTo(target)).tooltip(TL.COMMAND_INVITE_CLICKTOJOIN.toString())
|
|
|
|
.command("/" + Conf.baseCommandAliases.get(0) + " join " + myFaction.getTag());
|
|
|
|
|
|
|
|
message.send(target.getPlayer());
|
|
|
|
|
2019-05-23 02:12:46 +02:00
|
|
|
myFaction.msg(TL.COMMAND_ALTINVITE_INVITED_ALT, fme.describeTo(myFaction, true), target.describeTo(myFaction));
|
2019-05-19 22:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_ALTINVITE_DESCRIPTION;
|
|
|
|
}
|
|
|
|
}
|