53 lines
1.3 KiB
Java
53 lines
1.3 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
public class CmdInvite extends FCommand
|
|
{
|
|
public CmdInvite()
|
|
{
|
|
super();
|
|
this.aliases.add("invite");
|
|
this.aliases.add("inv");
|
|
|
|
this.requiredArgs.add("player name");
|
|
//this.optionalArgs.put("", "");
|
|
|
|
this.permission = Permission.INVITE.node;
|
|
this.disableOnLock = true;
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = true;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform()
|
|
{
|
|
FPlayer you = this.argAsBestFPlayerMatch(0);
|
|
if (you == null) return;
|
|
|
|
if (you.getFaction() == myFaction)
|
|
{
|
|
sendMessageParsed("%s<i> is already a member of %s", you.getName(), myFaction.getTag());
|
|
sendMessageParsed("<i>You might want to: " + new CmdKick().getUseageTemplate(false));
|
|
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))
|
|
{
|
|
return;
|
|
}
|
|
|
|
myFaction.invite(you);
|
|
|
|
you.sendMessageParsed("%s<i> invited you to %s", fme.getNameAndRelevant(you), myFaction.getTag(you));
|
|
myFaction.sendMessageParsed("%s<i> invited %s<i> to your faction.", fme.getNameAndRelevant(fme), you.getNameAndRelevant(fme));
|
|
}
|
|
|
|
}
|