The bot jolly was primarily built in Java, using the most popular Java library, which is JDA.
Default Configuration
This is the default configuration, which is not recommended to be changed. If it is altered, changes must also be made to some files' code.
public static void main(String[] args) {
bot = JDABuilder.create(Env.TOKEN, EnumSet.allOf(GatewayIntent.class))
.setActivity(Activity.playing("Sendo Desenvolvido")).build();
bot.addEventListener(new Ban());
System.out.println("🛰️ - Bot Jolly, em funcionamento.");
}
Here, I assume you already have Java JDK 8 and Maven installed on your machine with the corresponding version to carry out the installation.
Here are some configuration file guides that may be useful depending on your needs.
-
Url/Key
of the requires inEnv.java
:TOKEN="RESPECTIVE BOT TOKEN"
João Alberis(MrJoao):