mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
22 lines
943 B
JavaScript
22 lines
943 B
JavaScript
const commando = require('discord.js-commando');
|
|
|
|
module.exports = class InviteCommand extends commando.Command {
|
|
constructor(Client) {
|
|
super(Client, {
|
|
name: 'invite',
|
|
group: 'botinfo',
|
|
memberName: 'invite',
|
|
description: 'Sends you an invite for the bot, or an invite to my server, Heroes of Dreamland. (;invite)',
|
|
examples: [';invite']
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
if (message.channel.type !== 'dm') {
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
|
|
}
|
|
console.log(`[Command] ${message.content}`);
|
|
return message.channel.send("Add me to your server with this link:\nhttps://discordapp.com/oauth2/authorize?client_id=278305350804045834&scope=bot&permissions=1345846343\nOr, come to my server with this link:\nhttps://discord.gg/fqQF8mc");
|
|
}
|
|
};
|