This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2020-12-23 22:05:23 +00:00
.github Create FUNDING.yml 2020-10-20 11:28:10 +01:00
docs Command configs are now in their own file 2020-12-23 22:05:23 +00:00
src Command configs are now in their own file 2020-12-23 22:05:23 +00:00
.gitignore Command configs are now in their own file 2020-12-23 22:05:23 +00:00
.npmignore NPM Stuff 2020-10-20 12:07:49 +01:00
CODE_OF_CONDUCT.md Update documentation with a contact email 2020-11-07 11:22:43 +00:00
CONTRIBUTING.md Adjust links 2020-11-07 21:23:14 +00:00
LICENSE Initial commit 2020-10-20 10:42:08 +01:00
package-lock.json 1.0.4 2020-10-23 19:43:08 +01:00
package.json Update package.json 2020-11-03 18:09:47 +00:00
README.md Adjust links 2020-11-07 21:23:14 +00:00

VylBot Core

Discord bot client based upon Discord.js

Installation

Download the latest version from the releases page.

Copy the config template file and fill in the strings.

{
    "token": "",
    "prefix": "",
    "commands": [
        ""
    ],
    "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 for more information on how to use vylbot-core

VylBot Essentials

Want basic commands to add to your bot? Checkout VylBot Essentials!

Latest release: 1.0.0 on 3rd November 2020

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

We will not merge pull requests unless all checks pass and at least one of the repo members approves it.

See CONTRIBUTING.md for more details.