A Java version of ChomeNS Bot.
Find a file
ChomeNS 38b67298dc move to gradle
it is like 10x faster
`./gradlew build` takes 1 second to compile on this laptop
and `mvn package` takes around 10 seconds iirc
2023-06-22 19:27:33 +07:00
.idea move to gradle 2023-06-22 19:27:33 +07:00
src/main improve?!?! 2023-06-22 18:43:09 +07:00
.gitignore move to gradle 2023-06-22 19:27:33 +07:00
build.gradle move to gradle 2023-06-22 19:27:33 +07:00
gradlew move to gradle 2023-06-22 19:27:33 +07:00
gradlew.bat move to gradle 2023-06-22 19:27:33 +07:00
LICENSE add license 2023-05-05 18:58:31 +07:00
lombok.config Add stuff - first commit 2023-03-18 18:04:06 +07:00
README.md some notes about the exploits plugin in readme 2023-06-09 16:21:52 +07:00
settings.gradle move to gradle 2023-06-22 19:27:33 +07:00

ChomeNS Bot Java

A Java verison of ChomeNS Bot.

Also you will see that the exploits plugin is missing because I gitignored it to prevent exploit leaks

To make this compile just make ExploitsPlugin.java in the plugins folder and add this code:

package land.chipmunk.chayapak.chomens_bot.plugins;

import land.chipmunk.chayapak.chomens_bot.Bot;

import java.util.UUID;

public class ExploitsPlugin {
    private final Bot bot;

    public ExploitsPlugin (Bot bot) {
        this.bot = bot;
    }

    public void kick (UUID uuid) {}
}

And it should compile.