1.0.1 • Published 4 years ago

scriptcord v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

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");