The Cheeteck Corporation

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 menu
  • hwarn - Shows a users warning history
  • delwarn - Deletes a specific warn from a user
  • modrole - 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 user
  • ban - Bans a user
  • mute - 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

On this page