1
0
Fork 0
chomens-bot-java/README.md

28 lines
753 B
Markdown
Raw Normal View History

2023-04-22 12:26:22 +07:00
# ChomeNS Bot Java
A Java verison of ChomeNS Bot.
2023-05-11 16:11:21 +07:00
2023-06-22 19:45:35 +07:00
# Cum piling
You will see that the exploits plugin is missing because I gitignored it to prevent exploit leaks
2023-06-22 19:45:35 +07:00
To make this cum pie 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 {
2023-08-09 18:56:01 +07:00
public ExploitsPlugin (Bot bot) {}
public void kick (UUID uuid) {}
2023-08-13 12:31:20 +07:00
public void pcrash (UUID uuid) {}
}
```
2023-06-22 19:45:35 +07:00
Then at the root of the project run `./gradlew shadowJar` for Linux or `gradlew.bat shadowJar` for Windows
The .jar file will be at `build/libs`, to run the bot do `java -jar chomens_bot-rolling-all.jar`