discord-bot-plugins
v2.0.3
Published
A custom client for discord bots to support plugins!
Downloads
20
Readme
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"); // DO NOT DO THIS THIS PLUGIN IS INVALID AND ONLY FOR LEARNING SHOWOFF
client.login("Your token");
With Eris:
const { EClient } = require("discord-bot-plugins");
const client = new EClient("YOUR TOKEN"); //how eris works :/
client.plugins.use("plugin here"); // DO NOT DO THIS THIS PLUGIN IS INVALID AND ONLY FOR LEARNING SHOWOFF
Making a plugin:
module.exports.load = async (client) => {
//your code here
};
any issues? feel free to join my Discord
❤ Typings by CasperTheGhost and made with ❤