Skip to content

Files: Config.yml

Amy edited this page Dec 15, 2023 · 2 revisions

The Config file contains a few options and settings.

Bot:
  Token: "YOUR TOKEN HERE"
  Prefix: "!"
  Status:
    Activity: watching
    Text: "over your server"
Ignore:
  Channels:
  - 351864879545843715
  Categories:
  - 782124063626625044
Placeholders:
  DateFormat: "%d/%m/%y"

Bot

The bot section contains settings for your bots account.

Token

Your discord bot token generated from https://discord.com/developers/applications

Bot:
  Token: "asdahjwiduahdiuwahiauwhdksjdahjwbdajk"

Prefix

The prefix to use for non-slash commands.

Bot:
  Prefix: "!"

Status

Your bots status is what displays on its profile.

Activity

The activity of the bot, can be playing watching streaming competing listening

Bot:
  Status:
    Activity: watching

Text

The text of the bots status, will have the activities name put in front of it.

Bot:
  Status:
    Text: "over your server"

Ignore

The ignore section lets you configure channels and categories where you want the bot to ignore triggers.

Channels

A list of channels that should be ignored.

Ignore:
  Channels:
  - 351864879545843715
  - 1046212712084033586
  - 433846386166071306

Categories

A list of categories that should be ignored, any channels in these categories will be ignored.

Ignore:
  Categories:
  - 782124063626625044
  - 782123848988229642
  - 360990947653189633

Placeholders

Here you can configure a few things about placeholders.

DateFormat

This lets you configure the layout of the short date format, use %d for the day, %m for the month and %y for the year.
Example: %d%m%y would show the 15th of December 2023 as 15/12/23

Placeholders:
  DateFormat: "%d%m%y"