1.0.0 • Published 6 years ago
shellbot v1.0.0
ShellBot
A Shell-like command system for Discord Bots
Installation
npm i shellbot
Setup
const ShellBot = require("shellbot");
const Bot = new ShellBot({
token: "",
owners: [],
});
Bot.client.on("ready", () => {
console.log(`${Bot.client.user.tag}`);
})Options
| option | Required | Description | Default |
|---|---|---|---|
| token | :white_check_mark: | The bot token from Discord Applications | "" |
| owners | :white_check_mark: | The bot owner(s) | |
| commands | :x: | More commands other than the built in ones. | |
| name | :x: | The bot name | "Bot" |
1.0.0
6 years ago