Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdPaypalSee.java

64 lines
2.0 KiB
Java
Raw Normal View History

2018-09-21 08:28:20 +02:00
package com.massivecraft.factions.cmd;
2018-09-21 08:29:28 +02:00
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.FactionsPlugin;
2018-09-21 08:29:28 +02:00
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
2018-11-07 06:38:43 +01:00
public class CmdPaypalSee extends FCommand {
2019-12-02 20:03:27 +01:00
/**
* @author Driftay
*/
public CmdPaypalSee() {
this.aliases.addAll(Aliases.paypal_see);
this.optionalArgs.put("faction", "yours");
this.requirements = new CommandRequirements.Builder(Permission.PAYPAL)
.memberOnly()
.build();
}
@Override
public void perform(CommandContext context) {
if (!FactionsPlugin.getInstance().getConfig().getBoolean("fpaypal.Enabled")) {
context.msg(TL.GENERIC_DISABLED, "Faction Paypals");
return;
}
2019-09-15 20:53:27 +02:00
if (context.args.size() == 0) {
2019-09-15 20:53:27 +02:00
if (context.fPlayer.getFaction().getPaypal() == null) {
context.msg(TL.COMMAND_PAYPAL_NOTSET);
} else {
context.msg(TL.PAYPALSEE_PLAYER_PAYPAL, context.fPlayer.getFaction().getPaypal());
}
} else if (context.args.size() == 1) {
if (context.fPlayer.isAdminBypassing()) {
Faction faction = context.argAsFaction(0);
if (faction != null) {
2019-09-15 20:53:27 +02:00
if (faction.getPaypal() == null) {
context.msg(TL.COMMAND_PAYPALSEE_FACTION_NOTSET, faction.getTag());
} else {
context.msg(TL.COMMAND_PAYPALSEE_FACTION_PAYPAL.toString(), faction.getTag(), faction.getPaypal());
}
}
} else {
context.msg(TL.GENERIC_NOPERMISSION, "see another factions paypal.");
}
} else {
2019-09-15 20:53:27 +02:00
context.msg(FactionsPlugin.getInstance().cmdBase.cmdPaypalSee.getUsageTemplate(context));
}
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_PAYPALSEE_DESCRIPTION;
}
2018-09-21 08:28:20 +02:00
}
2018-09-21 08:29:28 +02:00