mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-17 21:06:11 +00:00
c4fce3f0f9
* Command_adminworld.java * Command_adventure.java * Command_banip.java * Command_blockedit.java * Command_blockpvp.java * Command_cage.java * Command_cartsit.java * Command_clearchat.java * Command_clearinventory.java * Command_commandlist.java * Command_creative.java * Command_deop.java * Command_deopall.java * Command_dispfill.java * Command_doom.java * Command_gcmd.java * Command_hubworld.java * Command_inspect.java * Command_list.java * Command_lockup.java * Command_manageshop.java * Command_manuallyverify.java * Command_masterbuilderworld.java * Command_mbconfig.java * Command_moblimiter.java * Command_mp44.java * Command_mute.java * Command_nickfilter.java * Command_op.java * Command_opall.java * Command_opme.java * Command_potion.java (Also corrected the inconsistent "player not found" message's color) * Command_rank.java * Command_ride.java * Command_saconfig.java * Command_scare.java * Command_setplayerlimit.java * Command_settotalvotes.java * Command_smite.java * Command_spectator.java * Command_survival.java * Command_unblockcmd.java * Command_uncage.java * Command_unmute.java * Command_verifynoadmin.java Here are some commands I added functionality to: * Command_dispfill.java: Added some code that hooks into the CoreProtect API to log the items being removed from and added into the dispensers. * Command_setlever.java: Added some code that hooks into the CoreProtect API to log the levers being interacted with. Here's a command I fixed a critical bug in: * Command_setlever.java
134 lines
4.1 KiB
Java
134 lines
4.1 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import me.totalfreedom.totalfreedommod.player.FPlayer;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
import org.apache.commons.lang3.ArrayUtils;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
|
|
@CommandPermissions(level = Rank.ADMIN, source = SourceType.BOTH)
|
|
@CommandParameters(description = "Toggle PVP mode for everyone or a certain player.", usage = "/<command> [[-s] <player> [reason] | list | purge | all]", aliases = "pvpblock,pvpmode")
|
|
public class Command_blockpvp extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(final CommandSender sender, final Player playerSender, final Command cmd, final String commandLabel, String[] args, final boolean senderIsConsole)
|
|
{
|
|
if (args.length == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (args[0].equals("list"))
|
|
{
|
|
msg("PVP is blocked for players:");
|
|
int count = 0;
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
final FPlayer info = plugin.pl.getPlayer(player);
|
|
if (info.isPvpBlocked())
|
|
{
|
|
msg(" - " + player.getName());
|
|
++count;
|
|
}
|
|
}
|
|
|
|
if (count == 0)
|
|
{
|
|
msg(" - none");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (args[0].equals("purge"))
|
|
{
|
|
FUtil.adminAction(sender.getName(), "Enabling PVP for all players.", true);
|
|
int count = 0;
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
final FPlayer info = plugin.pl.getPlayer(player);
|
|
if (info.isPvpBlocked())
|
|
{
|
|
info.setPvpBlocked(false);
|
|
++count;
|
|
}
|
|
}
|
|
|
|
msg("Enabled PVP for " + count + " players.");
|
|
return true;
|
|
}
|
|
|
|
if (args[0].equals("all"))
|
|
{
|
|
FUtil.adminAction(sender.getName(), "Disabling PVP for all non-admins", true);
|
|
int counter = 0;
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
if (!plugin.al.isAdmin(player))
|
|
{
|
|
final FPlayer playerdata = plugin.pl.getPlayer(player);
|
|
playerdata.setPvpBlocked(true);
|
|
++counter;
|
|
}
|
|
}
|
|
|
|
msg("Disabling PVP for " + counter + " players.");
|
|
return true;
|
|
}
|
|
|
|
final boolean smite = args[0].equals("-s");
|
|
if (smite)
|
|
{
|
|
args = ArrayUtils.subarray(args, 1, args.length);
|
|
if (args.length < 1)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
final Player p = getPlayer(args[0]);
|
|
if (p == null)
|
|
{
|
|
msg(PLAYER_NOT_FOUND);
|
|
return true;
|
|
}
|
|
|
|
String reason = null;
|
|
if (args.length > 1)
|
|
{
|
|
reason = StringUtils.join(args, " ", 1, args.length);
|
|
}
|
|
|
|
final FPlayer pd = plugin.pl.getPlayer(p);
|
|
if (pd.isPvpBlocked())
|
|
{
|
|
FUtil.adminAction(sender.getName(), "Enabling PVP for " + p.getName(), true);
|
|
pd.setPvpBlocked(false);
|
|
msg("Enabling PVP for " + p.getName());
|
|
msg(p, "Your PVP have been enabled.", ChatColor.GREEN);
|
|
}
|
|
else
|
|
{
|
|
if (plugin.al.isAdmin(p))
|
|
{
|
|
msg(p.getName() + " is an admin, and cannot have their PVP disabled.");
|
|
return true;
|
|
}
|
|
|
|
FUtil.adminAction(sender.getName(), "Disabling PVP for " + p.getName(), true);
|
|
pd.setPvpBlocked(true);
|
|
if (smite)
|
|
{
|
|
Command_smite.smite(sender, p, reason);
|
|
}
|
|
|
|
msg(p, "Your PVP has been disabled.", ChatColor.RED);
|
|
msg("Disabled PVP for " + p.getName());
|
|
}
|
|
return true;
|
|
}
|
|
} |