1.0.3 • Published 3 years ago

easydbot v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Easy-DiscordBot

Easy Discord Bot is a simple package used to make creating Discord bots so much easier.

Example Usages

Main File (index.js)

const easydbot = require('easydbot');
const config = require("./config.json");
easydbot.infoLog("Starting...");
easydbot.loadCommands({verbose: true});
easydbot.loadEvents({verbose: true});
easydbot.login({token: config.token, verbose: true})

Command File (ban.js)

const easydbot = require(`easydbot`);
easydbot.loadCommand({
    name: "ban",
    description: "Ban a member",
    permissison: "BAN_MEMBERS"
    aliases: ["banmember", "banhammer"]
    run: (message, args){
        //Command Code
    }
})
1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago