1.0.0 • Published 5 years ago

shellbot v1.0.0

Weekly downloads
5
License
ISC
Repository
github
Last release
5 years ago

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

optionRequiredDescriptionDefault
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

5 years ago