1.3 KiB
1.3 KiB
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.