vylbot-app/README.md
2020-11-09 10:18:14 +00:00

940 B

VylBot App

Discord bot for Vylpes' Den Discord Server. Based on VylBot Core.

Installation

Download the latest version from the releases page.

Copy the config template file and fill in the strings.

{
    "token": "",
    "prefix": "v!",
    "commands": [
        "essentials/commands",
        "commands"
    ],
    "events": [
        "events"
    ]
}
  • Token: Your bot's token
  • Prefix The command prefix
  • Commands: An array of the folders which contain your commands
  • Events: An array of the folders which contain your events

Usage

Implement the client using something like:

const vylbot = require('vylbot-core');
const config = require('./config.json');

const client = new vylbot.client(config);
client.start();

See the docs folder for more information on how to use vylbot-core