Haha-Yes/commands/utility/invite.js

15 lines
598 B
JavaScript
Raw Normal View History

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-17 17:02:39 +02:00
group: 'utility',
2018-09-07 19:07:10 +02:00
memberName: 'invite',
description: 'Send invite to add the bot',
});
}
2018-09-09 21:32:08 +02:00
async run(message) {
return message.say('You can add me from here: https://discordapp.com/oauth2/authorize?client_id=487342817048264704&scope=bot&permissions=2054\nYou can join my support server over here: https://discord.gg/SsMCsVY come and say hi :)');
2018-09-07 19:07:10 +02:00
}
};