mirror of
https://github.com/KoopaCode/NoBullying.git
synced 2025-04-02 22:57:33 +00:00
Source Code Uplodation
This commit is contained in:
parent
e4a6ae9338
commit
575a96b9ca
71
pom.xml
Normal file
71
pom.xml
Normal 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>
|
31
src/main/java/com/koopalabs/nobullying/BullyCommand.java
Normal file
31
src/main/java/com/koopalabs/nobullying/BullyCommand.java
Normal 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;
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
29
src/main/java/com/koopalabs/nobullying/ConfigManager.java
Normal file
29
src/main/java/com/koopalabs/nobullying/ConfigManager.java
Normal 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());
|
||||
}
|
||||
}
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
39
src/main/java/com/koopalabs/nobullying/NoBullying.java
Normal file
39
src/main/java/com/koopalabs/nobullying/NoBullying.java
Normal 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;
|
||||
}
|
||||
}
|
13
src/main/resources/config.yml
Normal file
13
src/main/resources/config.yml
Normal 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
|
11
src/main/resources/plugin.yml
Normal file
11
src/main/resources/plugin.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user