Source Code Uplodation

This commit is contained in:
Koopa 2025-01-31 20:28:28 -05:00
parent e4a6ae9338
commit 575a96b9ca
8 changed files with 262 additions and 0 deletions

71
pom.xml Normal file
View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.koopalabs</groupId>
<artifactId>nobullying</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>NoBullying</name>
<description>Limits the number of mobs that can target a player at once</description>
<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.21.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>

View File

@ -0,0 +1,31 @@
package com.koopalabs.nobullying;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
public class BullyCommand implements CommandExecutor {
private final NoBullying plugin;
public BullyCommand(NoBullying plugin) {
this.plugin = plugin;
}
@Override
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
if (!sender.hasPermission("nobullying.reload")) {
sender.sendMessage(ChatColor.RED + "You don't have permission to use this command!");
return true;
}
if (args.length == 1 && args[0].equalsIgnoreCase("reload")) {
plugin.getConfigManager().loadConfig();
sender.sendMessage(ChatColor.GREEN + "NoBullying configuration reloaded!");
return true;
}
sender.sendMessage(ChatColor.RED + "Usage: /bully reload");
return true;
}
}

View File

@ -0,0 +1,22 @@
package com.koopalabs.nobullying;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.command.TabCompleter;
import java.util.ArrayList;
import java.util.List;
public class BullyTabCompleter implements TabCompleter {
@Override
public List<String> onTabComplete(CommandSender sender, Command command, String alias, String[] args) {
List<String> completions = new ArrayList<>();
if (args.length == 1) {
if (sender.hasPermission("nobullying.reload")) {
completions.add("reload");
}
}
return completions;
}
}

View File

@ -0,0 +1,29 @@
package com.koopalabs.nobullying;
import org.bukkit.World;
import java.util.List;
public class ConfigManager {
private final NoBullying plugin;
private int maxTargetingMobs;
private List<String> enabledWorlds;
public ConfigManager(NoBullying plugin) {
this.plugin = plugin;
loadConfig();
}
public void loadConfig() {
plugin.reloadConfig();
maxTargetingMobs = plugin.getConfig().getInt("max-targeting-mobs", 5);
enabledWorlds = plugin.getConfig().getStringList("enabled-worlds");
}
public int getMaxTargetingMobs() {
return maxTargetingMobs;
}
public boolean isWorldEnabled(World world) {
return enabledWorlds.contains(world.getName());
}
}

View File

@ -0,0 +1,46 @@
package com.koopalabs.nobullying;
import org.bukkit.entity.Entity;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Monster;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.EntityTargetLivingEntityEvent;
import java.util.List;
import java.util.stream.Collectors;
public class MobTargetListener implements Listener {
private final NoBullying plugin;
public MobTargetListener(NoBullying plugin) {
this.plugin = plugin;
}
@EventHandler
public void onEntityTarget(EntityTargetLivingEntityEvent event) {
if (event.getTarget() instanceof Player && event.getEntity() instanceof Monster) {
Player player = (Player) event.getTarget();
// Check if the world is enabled
if (!plugin.getConfigManager().isWorldEnabled(player.getWorld())) {
return;
}
// Get all monsters currently targeting the player
List<Entity> targetingMobs = player.getWorld().getEntities().stream()
.filter(e -> e instanceof Monster)
.filter(e -> {
LivingEntity target = ((Monster) e).getTarget();
return target != null && target.equals(player);
})
.collect(Collectors.toList());
// If we already have max mobs targeting, cancel the new targeting
if (targetingMobs.size() >= plugin.getConfigManager().getMaxTargetingMobs()) {
event.setCancelled(true);
}
}
}
}

View File

@ -0,0 +1,39 @@
package com.koopalabs.nobullying;
import org.bukkit.plugin.java.JavaPlugin;
public class NoBullying extends JavaPlugin {
private static NoBullying instance;
private ConfigManager configManager;
@Override
public void onEnable() {
instance = this;
// Initialize config
saveDefaultConfig();
configManager = new ConfigManager(this);
// Register events
getServer().getPluginManager().registerEvents(new MobTargetListener(this), this);
// Register commands and tab completer
getCommand("bully").setExecutor(new BullyCommand(this));
getCommand("bully").setTabCompleter(new BullyTabCompleter());
getLogger().info("NoBullying plugin has been enabled!");
}
@Override
public void onDisable() {
getLogger().info("NoBullying plugin has been disabled!");
}
public static NoBullying getInstance() {
return instance;
}
public ConfigManager getConfigManager() {
return configManager;
}
}

View File

@ -0,0 +1,13 @@
# NoBullying Plugin Configuration
# Created by Koopa (KoopaLabs)
# Maximum number of mobs that can target a player at once
max-targeting-mobs: 5
# Worlds where the plugin is enabled
enabled-worlds:
- world
- world_nether
- world_the_end
# Support server: https://discord.gg/KmHGjaHWct

View File

@ -0,0 +1,11 @@
name: NoBullying
version: 1.0.0
main: com.koopalabs.nobullying.NoBullying
api-version: '1.21'
author: Koopa
description: Limits the number of mobs that can target a player at once
commands:
bully:
description: Reload the plugin configuration
usage: /bully reload
permission: nobullying.reload