jackbot-discord
kinda makes it easier to make bots on discord
okay so here's a quick bot just to show how easy it is
Simple bot (Hello, world!)
import Bot from 'jackbot-discord'
import { Message } from 'discord-js'
const bot = new Bot(
{
repeat (message: Message, args: string[]) {
message.channel.send(args.join(' '))
}
},
{
prefix: '-'
}
)
bot.login('Your bot token here')
After opening the bot, do -repeat Hello, world!
Advanced bot
import Bot from 'jackbot-discord'
import { Message } from 'discord-js'
const bot = new Bot(
{
"Can you please say": (message: Message, args: string[])=> {
message.channel.send(args.join(' '))
}
},
{
prefix: ''
}
)
bot.login('Your bot token here')
After opening the bot, do Can you please say Hello, world!