mirror of
https://github.com/Alee14/AleeBot.git
synced 2025-01-23 19:42:04 -05:00
26 lines
462 B
JavaScript
26 lines
462 B
JavaScript
const Discord = require('discord.js');
|
|
exports.run = (client, message, args, config) => {
|
|
message.reply(':arrow_left: Continue in DMs.');
|
|
message.author.sendMessage("AleeBot on your server? Great! Here's the link: https://goo.gl/KDQyrp");
|
|
}
|
|
|
|
exports.conf = {
|
|
enabled: true,
|
|
|
|
guildOnly: false,
|
|
|
|
aliases: [],
|
|
|
|
permLevel: 0
|
|
|
|
};
|
|
|
|
exports.help = {
|
|
|
|
name: 'botinvite',
|
|
|
|
description: 'Now you can invite your bot to your server!',
|
|
|
|
usage: 'botinvite'
|
|
|
|
};
|