Git Product home page Git Product logo

nupasa's Introduction

PenguBot Build Status Discord

Obsolete

We've shifted from using Commando as our framework to Klasa and due to this the code in this branch is now obsolete. Please check the rewrite branch for the latest version of PenguBot and it's code.

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
viction

Acknowledgement

This project contains some code from the following:

Commando by WeebDev

Lyrics Scraper (Lyricist)

Komada Pieces

Insult Generator

Vote on DiscordBots

Discord Bots

nupasa's People

Contributors

adiologydev avatar mrjacz avatar pauleks avatar mason-rogers avatar greenkeeper[bot] avatar yorkaargh avatar

Watchers

James Cloos avatar Meszpo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.