You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/thing/invite.js

15 lines
590 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class InviteCommand extends Command {
constructor(client) {
super(client, {
name: 'invite',
group: 'thing',
memberName: 'invite',
description: 'Send invite to add the bot',
});
}
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 :)');
}
};