A Java version of ChomeNS Bot.
Find a file
2023-06-09 16:21:52 +07:00
.idea Delete workspace.xml 2023-05-02 14:13:47 +07:00
src/main fix a major problem 2023-06-08 18:15:14 +07:00
.gitignore fix lmao 2023-05-14 16:40:31 +07:00
chomens_bot.iml add stuff and fix stuff yet again 2023-03-19 17:24:48 +07:00
dependency-reduced-pom.xml actually use less dependencies/.,,.,. 2023-05-23 19:14:16 +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
pom.xml actually use less dependencies/.,,.,. 2023-05-23 19:14:16 +07:00
README.md some notes about the exploits plugin in readme 2023-06-09 16:21:52 +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.