discord-bot-plugins
🎉 A custom client with support for community made plugins :) 🎉
With discord.js:
const { DClient } = require("discord-bot-plugins");
const client = new DClient();
client.plugins.use("plugin here");
client.login("Your token");
With Eris:
const { EClient } = require("discord-bot-plugins");
const client = new EClient("YOUR TOKEN");
client.plugins.use("plugin here");
Making a plugin:
module.exports.load = async (client) => {
};
any issues? feel free to join my Discord
❤ Typings by CasperTheGhost and made with ❤