Core
Optional but recommended
Core
Core includes the absolute basics of the bot such as module loader and base commands,
Base Commands
help- shows the help menuhwarn- Shows a users warning historydelwarn- Deletes a specific warn from a usermodrole- Sets a role as moderator role, which allows users with that role to use moderation commands such as warn, kick, ban, etc.kick- Kicks a userban- Bans a usermute- Mutes a user for a specific amount of time
We also have the opposite commands for unmuting and unbanning.
For making custom modules that depend on other modules, you can add the following decorators to your custom module:
@Module.dependency(“NAME”)
@Module.dependency.soft(“NAME”)It is recommended to add the following to your custom module for it to be shown in the help menu :)
@Module.help{
@Module.command(“stop”,”stops the bot”)
@Module.desc(“This module is made by CheetCorp”)
}Core cannot be disabled