2018-09-07 19:07:10 +02:00
|
|
|
const { Command } = require('discord.js-commando');
|
|
|
|
module.exports = class InviteCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
|
|
name: 'invite',
|
2018-09-08 03:56:48 +02:00
|
|
|
group: 'thing',
|
2018-09-07 19:07:10 +02:00
|
|
|
memberName: 'invite',
|
|
|
|
description: 'Send invite to add the bot',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
run(message) {
|
|
|
|
return message.say('You can add me from here \nhttps://discordapp.com/oauth2/authorize?client_id=487342817048264704&scope=bot&permissions=2054');
|
|
|
|
}
|
|
|
|
};
|