From f76c12d81fd8dc18da45b68b3880b9323b7fee45 Mon Sep 17 00:00:00 2001 From: ChomeNS <95471003+ChomeNS@users.noreply.github.com> Date: Fri, 9 Jun 2023 16:21:52 +0700 Subject: [PATCH] some notes about the exploits plugin in readme --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 784a527..33dd3b5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,26 @@ # ChomeNS Bot Java A Java verison of ChomeNS Bot. -Also you might see similar codes to [ChipmunkBot](https://code.chipmunk.land/ChipmunkMC/chipmunkbot) because I used it as a base +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: + +```java +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.