Go to file
2020-11-09 10:18:14 +00:00
commands Add comments to role, rules commands, and the events 2020-11-07 17:01:03 +00:00
essentials/commands Moved essential commands into essentials folder 2020-11-02 12:22:58 +00:00
events Add comments to role, rules commands, and the events 2020-11-07 17:01:03 +00:00
.gitignore Basic Setup 2020-11-01 19:29:12 +00:00
package-lock.json Added bunny and poll commands 2020-11-04 17:00:23 +00:00
package.json Add readme.md 2020-11-09 10:18:14 +00:00
README.md Add readme.md 2020-11-09 10:18:14 +00:00
rules.txt Add role and rules command 2020-11-04 19:58:54 +00:00
vylbot.js Rename bot.js to vylbot.js 2020-11-08 16:47:36 +00:00

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