[+] Greatly optmized ALOT of Commands! [+] Removed Portal Travel Agent (Recoding) [+] Added Administrator Command F Lookup
58 lines
2.0 KiB
Java
58 lines
2.0 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.FPlayers;
|
|
import com.massivecraft.factions.FactionsPlugin;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.struct.Role;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
public class CmdOpen extends FCommand {
|
|
|
|
/**
|
|
* @author FactionsUUID Team
|
|
*/
|
|
|
|
public CmdOpen() {
|
|
super();
|
|
this.aliases.add("open");
|
|
this.optionalArgs.put("yes/no", "flip");
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.OPEN)
|
|
.withRole(Role.COLEADER)
|
|
.playerOnly()
|
|
.memberOnly()
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
public void perform(CommandContext context) {
|
|
FactionsPlugin.getInstance().getServer().getScheduler().runTaskAsynchronously(FactionsPlugin.instance, () -> {
|
|
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
|
|
if (!context.payForCommand(Conf.econCostOpen, TL.COMMAND_OPEN_TOOPEN, TL.COMMAND_OPEN_FOROPEN)) {
|
|
return;
|
|
}
|
|
|
|
context.faction.setOpen(context.argAsBool(0, !context.faction.getOpen()));
|
|
|
|
String open = context.faction.getOpen() ? TL.COMMAND_OPEN_OPEN.toString() : TL.COMMAND_OPEN_CLOSED.toString();
|
|
|
|
// Inform
|
|
for (FPlayer fplayer : FPlayers.getInstance().getOnlinePlayers()) {
|
|
if (fplayer.getFactionId().equals(context.faction.getId())) {
|
|
fplayer.msg(TL.COMMAND_OPEN_CHANGES, context.fPlayer.getName(), open);
|
|
continue;
|
|
}
|
|
fplayer.msg(TL.COMMAND_OPEN_CHANGED, context.faction.getTag(fplayer.getFaction()), open);
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_OPEN_DESCRIPTION;
|
|
}
|
|
|
|
}
|