const dbd = require("dbd.js")
const bot = new dbd.Bot({
token: "TOKEN",
prefix: "!"
})
bot.onMessage()
bot.command({
name: "ping",
code: `Pong!`
})
It has to be in, your main index
bot.variables({
Name: "Value",
Name2: "Value2"
})
It has to be in, your main index
bot.joinCommand({
channel: "CHANNEL ID",
code: `Welcome <@$authorID>`
})
bot.onJoined()
It has to be in, your main index
bot.status({
text: "Your Text",
type: "PLAYING",
time: 12
})