2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2018-02-03 21:56:16 +01:00
|
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
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;
|
2015-05-25 22:46:18 +02:00
|
|
|
import mkremins.fanciful.FancyMessage;
|
|
|
|
import org.bukkit.ChatColor;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdInvite extends FCommand {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public CmdInvite() {
|
2014-07-01 22:10:18 +02:00
|
|
|
super();
|
|
|
|
this.aliases.add("invite");
|
|
|
|
this.aliases.add("inv");
|
2014-04-04 20:55:21 +02:00
|
|
|
|
|
|
|
this.requiredArgs.add("player name");
|
|
|
|
//this.optionalArgs.put("", "");
|
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
this.permission = Permission.INVITE.node;
|
|
|
|
this.disableOnLock = true;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
2018-02-03 21:56:16 +01:00
|
|
|
senderMustBeModerator = false;
|
2018-03-26 23:43:15 +02:00
|
|
|
senderMustBeColeader = false;
|
2014-07-01 22:10:18 +02:00
|
|
|
senderMustBeAdmin = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
2018-03-01 05:23:37 +01:00
|
|
|
FPlayer target = this.argAsBestFPlayerMatch(0);
|
|
|
|
if (target == null) {
|
2014-07-01 22:10:18 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-03-01 05:23:37 +01:00
|
|
|
if (target.getFaction() == myFaction) {
|
|
|
|
msg(TL.COMMAND_INVITE_ALREADYMEMBER, target.getName(), myFaction.getTag());
|
2014-12-08 00:12:52 +01:00
|
|
|
msg(TL.GENERIC_YOUMAYWANT.toString() + p.cmdBase.cmdKick.getUseageTemplate(false));
|
2014-07-01 22:10:18 +02:00
|
|
|
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-12-08 00:12:52 +01:00
|
|
|
if (!payForCommand(Conf.econCostInvite, TL.COMMAND_INVITE_TOINVITE.toString(), TL.COMMAND_INVITE_FORINVITE.toString())) {
|
2014-07-01 22:10:18 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-08-02 16:13:16 +02:00
|
|
|
if (!fme.isAdminBypassing()) {
|
|
|
|
Access access = myFaction.getAccess(fme, PermissableAction.INVITE);
|
|
|
|
if (access == Access.DENY || (access == Access.UNDEFINED && !assertMinRole(Role.MODERATOR))) {
|
|
|
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "invite");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (myFaction.isInvited(target)) {
|
|
|
|
fme.msg(TL.COMMAND_INVITE_ALREADYINVITED, target.getName());
|
2018-02-03 21:56:16 +01:00
|
|
|
return;
|
|
|
|
}
|
2018-03-01 05:23:37 +01:00
|
|
|
if (myFaction.isBanned(target)) {
|
|
|
|
fme.msg(TL.COMMAND_INVITE_BANNED, target.getName());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
myFaction.invite(target);
|
2018-08-02 16:55:47 +02:00
|
|
|
// Send the invitation to the target player when online, otherwise just ignore
|
|
|
|
if (target.isOnline()) {
|
|
|
|
// Tooltips, colors, and commands only apply to the string immediately before it.
|
|
|
|
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());
|
2014-11-06 01:36:47 +01:00
|
|
|
}
|
2018-08-02 16:55:47 +02:00
|
|
|
|
2018-03-01 05:23:37 +01:00
|
|
|
myFaction.msg(TL.COMMAND_INVITE_INVITED, fme.describeTo(myFaction, true), target.describeTo(myFaction));
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2015-01-22 00:58:33 +01:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_INVITE_DESCRIPTION;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|