mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-19 13:55:00 +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
138 lines
4.6 KiB
Java
138 lines
4.6 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import java.util.Objects;
|
|
import me.totalfreedom.totalfreedommod.admin.Admin;
|
|
import me.totalfreedom.totalfreedommod.banning.Ban;
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
|
import me.totalfreedom.totalfreedommod.discord.Discord;
|
|
import me.totalfreedom.totalfreedommod.punishments.Punishment;
|
|
import me.totalfreedom.totalfreedommod.punishments.PunishmentType;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
import org.apache.commons.lang.ArrayUtils;
|
|
import org.apache.commons.lang.StringUtils;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.GameMode;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.scheduler.BukkitRunnable;
|
|
import org.bukkit.util.Vector;
|
|
|
|
@CommandPermissions(level = Rank.SENIOR_ADMIN, source = SourceType.ONLY_CONSOLE, blockHostConsole = true)
|
|
@CommandParameters(description = "Sends the specified player to their doom.", usage = "/<command> <playername> [reason]")
|
|
public class Command_doom extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(final CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
if (args.length == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
final Player player = getPlayer(args[0]);
|
|
|
|
if (player == null)
|
|
{
|
|
msg(PLAYER_NOT_FOUND);
|
|
return true;
|
|
}
|
|
|
|
FUtil.adminAction(sender.getName(), "Casting oblivion over " + player.getName(), true);
|
|
FUtil.bcastMsg(player.getName() + " will be completely obliviated!", ChatColor.RED);
|
|
|
|
final String ip = Objects.requireNonNull(player.getAddress()).getAddress().getHostAddress().trim();
|
|
|
|
// Remove from admin
|
|
Admin admin = getAdmin(player);
|
|
if (admin != null)
|
|
{
|
|
FUtil.adminAction(sender.getName(), "Removing " + player.getName() + " from the admin list", true);
|
|
admin.setActive(false);
|
|
plugin.al.save(admin);
|
|
plugin.al.updateTables();
|
|
plugin.ptero.updateAccountStatus(admin);
|
|
if (plugin.dc.enabled && ConfigEntry.DISCORD_ROLE_SYNC.getBoolean())
|
|
{
|
|
Discord.syncRoles(admin, plugin.pl.getData(admin.getName()).getDiscordID());
|
|
}
|
|
}
|
|
|
|
// Remove from whitelist
|
|
player.setWhitelisted(false);
|
|
|
|
// Deop
|
|
player.setOp(false);
|
|
|
|
String reason = null;
|
|
|
|
if (args.length > 1)
|
|
{
|
|
reason = StringUtils.join(ArrayUtils.subarray(args, 1, args.length), " ");
|
|
}
|
|
|
|
// Ban player
|
|
Ban ban = Ban.forPlayer(player, sender);
|
|
ban.setReason((reason == null ? "FUCKOFF" : reason));
|
|
for (String playerIp : plugin.pl.getData(player).getIps())
|
|
{
|
|
ban.addIp(playerIp);
|
|
}
|
|
plugin.bm.addBan(ban);
|
|
|
|
// Set gamemode to survival
|
|
player.setGameMode(GameMode.SURVIVAL);
|
|
|
|
// Clear inventory
|
|
player.closeInventory();
|
|
player.getInventory().clear();
|
|
|
|
// Ignite player
|
|
player.setFireTicks(10000);
|
|
|
|
// Generate explosion
|
|
player.getWorld().createExplosion(player.getLocation(), 0F, false);
|
|
|
|
// Shoot the player in the sky
|
|
player.setVelocity(player.getVelocity().clone().add(new Vector(0, 20, 0)));
|
|
|
|
final String kickReason = (reason == null ? "FUCKOFF, and get your shit together!" : reason);
|
|
|
|
// Log doom
|
|
plugin.pul.logPunishment(new Punishment(player.getName(), FUtil.getIp(player), sender.getName(), PunishmentType.DOOM, reason));
|
|
|
|
new BukkitRunnable()
|
|
{
|
|
@Override
|
|
public void run()
|
|
{
|
|
// strike lightning
|
|
player.getWorld().strikeLightningEffect(player.getLocation());
|
|
|
|
// kill (if not done already)
|
|
player.setHealth(0.0);
|
|
}
|
|
}.runTaskLater(plugin, 2L * 20L);
|
|
|
|
new BukkitRunnable()
|
|
{
|
|
@Override
|
|
public void run()
|
|
{
|
|
// message
|
|
FUtil.adminAction(sender.getName(), "Banning " + player.getName(), true);
|
|
msg(sender, player.getName() + " has been banned and IP is: " + ip);
|
|
|
|
// generate explosion
|
|
player.getWorld().createExplosion(player.getLocation(), 0F, false);
|
|
|
|
// kick player
|
|
player.kickPlayer(ChatColor.RED + kickReason);
|
|
}
|
|
}.runTaskLater(plugin, 3L * 20L);
|
|
|
|
return true;
|
|
}
|
|
} |