mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-06-28 12:06:42 +00:00
pbs kids
This commit is contained in:
@ -0,0 +1,94 @@
|
||||
package me.totalfreedom.datura.cmd;
|
||||
|
||||
|
||||
import me.totalfreedom.base.Patchwork;
|
||||
import me.totalfreedom.base.Shortcuts;
|
||||
import me.totalfreedom.command.Commander;
|
||||
import me.totalfreedom.command.annotation.Base;
|
||||
import me.totalfreedom.command.annotation.Completion;
|
||||
import me.totalfreedom.command.annotation.Info;
|
||||
import me.totalfreedom.command.annotation.Permissive;
|
||||
import me.totalfreedom.command.annotation.Subcommand;
|
||||
import me.totalfreedom.datura.Datura;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.entity.Item;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
@Info(name = "cleardrops", description = "Clears all item drops in the world" + ".", usage = "/<command>", aliases =
|
||||
{"cd", "clearitems", "ci", "wipeitems", "wi"})
|
||||
@Permissive(perm = "datura.cleardrops")
|
||||
public class ClearDropsCommand extends Commander
|
||||
{
|
||||
/**
|
||||
* Initializes this command object. The provided {@link JavaPlugin}
|
||||
* should be the plugin which contains the
|
||||
* command.
|
||||
* <p>
|
||||
* This constructor will automatically register all subcommands and
|
||||
* completions for this command. It will also
|
||||
* automatically infer all required information from the provided
|
||||
* {@link Info} and {@link Permissive} annotations.
|
||||
*
|
||||
* @param plugin The plugin which contains this command.
|
||||
*/
|
||||
protected ClearDropsCommand(final @NotNull JavaPlugin plugin)
|
||||
{
|
||||
super(plugin);
|
||||
}
|
||||
|
||||
@Base
|
||||
public void clearDrops(final CommandSender sender)
|
||||
{
|
||||
if (!(sender instanceof Player))
|
||||
{
|
||||
sender.sendPlainMessage("You must define a world.");
|
||||
return;
|
||||
}
|
||||
|
||||
final Player player = (Player) sender;
|
||||
Patchwork.getInstance()
|
||||
.getExecutor()
|
||||
.delayedExecutor(Shortcuts.provideModule(Datura.class), 20 * 10L)
|
||||
.execute(() ->
|
||||
{
|
||||
int i = 0;
|
||||
for (final Entity entity : player.getWorld().getEntities())
|
||||
{
|
||||
if (entity instanceof Item)
|
||||
{
|
||||
entity.remove();
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
player.sendPlainMessage("Successfully removed " + i + " items.");
|
||||
});
|
||||
}
|
||||
|
||||
@Subcommand(permission = "datura.cleardrops", args = {World.class})
|
||||
@Completion(index = 0, args = {"%world%"})
|
||||
public void clearDrops(final CommandSender sender, final World world)
|
||||
{
|
||||
Patchwork.getInstance()
|
||||
.getExecutor()
|
||||
.delayedExecutor(Shortcuts.provideModule(Datura.class), 20 * 10L)
|
||||
.execute(() ->
|
||||
{
|
||||
int i = 0;
|
||||
for (final Entity entity : world.getEntities())
|
||||
{
|
||||
if (entity instanceof Item)
|
||||
{
|
||||
entity.remove();
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
sender.sendPlainMessage("Successfully removed " + i + " items.");
|
||||
});
|
||||
}
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
package me.totalfreedom.datura.cmd;
|
||||
|
||||
import me.totalfreedom.command.Commander;
|
||||
import me.totalfreedom.command.annotation.Base;
|
||||
import me.totalfreedom.command.annotation.Completion;
|
||||
import me.totalfreedom.command.annotation.Subcommand;
|
||||
import me.totalfreedom.utils.Tagged;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class ClearEntitiesCommand extends Commander
|
||||
{
|
||||
/**
|
||||
* Initializes this command object. The provided {@link JavaPlugin} should be the plugin which contains the
|
||||
* command.
|
||||
* <p>
|
||||
* This constructor will automatically register all subcommands and completions for this command. It will also
|
||||
* automatically infer all required information from the provided {@link Info} and {@link Permissive} annotations.
|
||||
*
|
||||
* @param plugin The plugin which contains this command.
|
||||
*/
|
||||
protected ClearEntitiesCommand(final @NotNull JavaPlugin plugin)
|
||||
{
|
||||
super(plugin);
|
||||
}
|
||||
|
||||
@Base
|
||||
public void clearEntities(final CommandSender sender)
|
||||
{
|
||||
if (!(sender instanceof Player))
|
||||
{
|
||||
sender.sendPlainMessage("You must specify a world to clear entities from.");
|
||||
return;
|
||||
}
|
||||
|
||||
final Player player = (Player) sender;
|
||||
|
||||
int i = 0;
|
||||
for (final Entity entity : player.getWorld().getEntities())
|
||||
{
|
||||
if (!Tagged.NON_WIPEABLE.isTagged(entity.getType()))
|
||||
{
|
||||
entity.remove();
|
||||
i++;
|
||||
}
|
||||
}
|
||||
sender.sendPlainMessage("Cleared " + i + " entities.");
|
||||
}
|
||||
|
||||
@Subcommand(permission = "datura.clearentities", args = {World.class})
|
||||
@Completion(index = 0, args = {"%world%"})
|
||||
public void clearEntities(final CommandSender sender, final World world)
|
||||
{
|
||||
int i = 0;
|
||||
for (final Entity entity : world.getEntities())
|
||||
{
|
||||
if (!Tagged.NON_WIPEABLE.isTagged(entity.getType()))
|
||||
{
|
||||
entity.remove();
|
||||
i++;
|
||||
}
|
||||
}
|
||||
sender.sendPlainMessage("Cleared " + i + " entities.");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user