funbotjs
v1.0.2
Published
Fun bot, the newest production from SimpleBotsJs
Downloads
3
Readme
FunBotJs
The best bot for fun
Hello! Your index for this should look like this:
const { ping, ready } = require("simplebotsjs");
const discord = require("discord.js");
const bot = new discord.Client();
bot.on("ready", () => {
ready();
});
bot.on('message', message => {
if (message.content === 'ping') {
message.reply('Pong');
ping();
}
});
bot.login('BOT TOKEN HERE');
Install it with npm i funbotjs