70 lines
2.1 KiB
Java
70 lines
2.1 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.FPerm;
|
|
import com.massivecraft.factions.Factions;
|
|
import com.massivecraft.factions.Perm;
|
|
import com.massivecraft.factions.cmd.arg.ARUPlayer;
|
|
import com.massivecraft.factions.entity.UPlayer;
|
|
import com.massivecraft.factions.event.FactionsEventInvitedChange;
|
|
import com.massivecraft.mcore.cmd.arg.ARBoolean;
|
|
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
|
|
import com.massivecraft.mcore.cmd.req.ReqIsPlayer;
|
|
|
|
public class CmdFactionsInvite extends FCommand
|
|
{
|
|
public CmdFactionsInvite()
|
|
{
|
|
this.addAliases("inv", "invite");
|
|
|
|
this.addRequiredArg("player");
|
|
this.addOptionalArg("yes/no", "toggle");
|
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.INVITE.node));
|
|
this.addRequirements(ReqIsPlayer.get());
|
|
}
|
|
|
|
@Override
|
|
public void perform()
|
|
{
|
|
// Args
|
|
UPlayer uplayer = this.arg(0, ARUPlayer.getStartAny(sender));
|
|
if (uplayer == null) return;
|
|
|
|
Boolean newInvited = this.arg(1, ARBoolean.get(), !myFaction.isInvited(uplayer));
|
|
if (newInvited == null) return;
|
|
|
|
// Allready member?
|
|
if (uplayer.getFaction() == myFaction)
|
|
{
|
|
msg("%s<i> is already a member of %s", uplayer.getName(), myFaction.getTag());
|
|
msg("<i>You might want to: " + Factions.get().getOuterCmdFactions().cmdFactionsKick.getUseageTemplate(false));
|
|
return;
|
|
}
|
|
|
|
// FPerm
|
|
if ( ! FPerm.INVITE.has(sender, myFaction, true)) return;
|
|
|
|
// Event
|
|
FactionsEventInvitedChange event = new FactionsEventInvitedChange(sender, uplayer, myFaction, newInvited);
|
|
event.run();
|
|
if (event.isCancelled()) return;
|
|
newInvited = event.isNewInvited();
|
|
|
|
// Apply
|
|
myFaction.setInvited(uplayer, newInvited);
|
|
|
|
// Inform
|
|
if (newInvited)
|
|
{
|
|
uplayer.msg("%s<i> invited you to %s", fme.describeTo(uplayer, true), myFaction.describeTo(uplayer));
|
|
myFaction.msg("%s<i> invited %s<i> to your faction.", fme.describeTo(myFaction, true), uplayer.describeTo(myFaction));
|
|
}
|
|
else
|
|
{
|
|
uplayer.msg("%s<i> revoked your invitation to <h>%s<i>.", fme.describeTo(uplayer), myFaction.describeTo(uplayer));
|
|
myFaction.msg("%s<i> revoked %s's<i> invitation.", fme.describeTo(myFaction), uplayer.describeTo(myFaction));
|
|
}
|
|
}
|
|
|
|
}
|