forked from ChomeNS/chomens-bot-java
A Java version of ChomeNS Bot.
ChomeNS
38b67298dc
it is like 10x faster `./gradlew build` takes 1 second to compile on this laptop and `mvn package` takes around 10 seconds iirc |
||
---|---|---|
.idea | ||
src/main | ||
.gitignore | ||
build.gradle | ||
gradlew | ||
gradlew.bat | ||
LICENSE | ||
lombok.config | ||
README.md | ||
settings.gradle |
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.