forked from ChomeNS/chomens-bot-java
some notes about the exploits plugin in readme
This commit is contained in:
parent
982bde508c
commit
f76c12d81f
1 changed files with 23 additions and 1 deletions
24
README.md
24
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.
|
||||
|
|
Loading…
Reference in a new issue