scriptcord
v1.0.1
Published
A small addon for small discord.js bots.
Downloads
5
Maintainers
Readme
ScriptCord
A small in-building framework for discord.js bots.
Example
const { Client } = require("scriptcord");
const client = new Client({
commandsDirectory: "./commands",
eventsDirectory: "./events",
prefix: ".",
mentionPrefix: false,
botOwner: "414764511489294347",
botAdmins: []
});
client.on("ready", () => client.logger.ready("Ready!"));
client.login("SECRET_TOKEN");