Skip to content

York-Fork/PenguBot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PenguBot Build Status Discord

PenguBot is a community developed Discord Bot with over 12,000 guilds. Join Discord: https://discord.gg/u8WYw5r

Contribute

Submit your PRs with new commands, updated previous commands, etc. and they might get accepted into PenguBot in full production :)

Empty Command Example

const { Command } = require('discord.js-commando');

module.exports = class ExampleCommand extends Command {
    constructor(client) {
        super(client, {
            name: '', // Command name.
            aliases: [], // Other aliases to execute the command.
            group: '', // Group in which the command will go.
            memberName: '', // Name of command.
            description: '', // Command's description.
            examples: [""], // How the command should be executed.
            guildOnly: true, // Execute in Guild Only
            throttling: {
                usages: 1, // Total Usage in the duration below.
                duration: 3 // Cooldown in Seconds.
            },
             args: [{
                key: '', // Name you want to refer this arg to.
                prompt: '', // Message to prompt while asking for input.
                type: '' // Example: String, Integer, Member, etc.
            }]
        });
    }
    hasPermission(msg) {
        // Permission
    }
    async run(msg, args) {
        // Main Command Code
    }
};

Contributor(s)

Jacz

Acknowledgement

This project contains some code from the following:

Commando by WeebDev

Lyrics Scraper (Lyricist)

Komada Pieces

About

Official PenguBot GitHub Repository

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%