Haha-Yes/commands/utility/updoot.js

33 lines
969 B
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
const { MessageEmbed } = require('discord.js');
2018-12-25 19:17:07 +01:00
2018-12-30 01:20:24 +01:00
class UpdootCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('updoot', {
aliases: ['updoot', 'upvote', 'vote'],
category: 'utility',
channelRestriction: 'guild',
description: {
2018-12-30 01:20:24 +01:00
content: 'Send a link to vote for my bot',
usage: '',
examples: ['']
}
2019-01-02 08:09:45 +01:00
});
}
2018-09-09 00:44:35 +02:00
2019-01-02 08:09:45 +01:00
async exec(message) {
const upDoot = new MessageEmbed()
.setColor('#0099ff')
.setTitle('Vote for my bot')
.setAuthor(message.author.username)
.setDescription('You can vote for my bot if you think the bot is awesome!')
2019-02-08 18:46:08 +01:00
.addField('Discordbot.org', 'https://discordbots.org/bot/377563711927484418/vote')
.addField('Discordbotlist.com', 'https://discordbotlist.com/bots/377563711927484418/upvote')
.setTimestamp()
2019-02-08 18:46:08 +01:00
.setFooter('Thanks for the updoots', this.client.user.avatarURL);
2019-01-02 08:09:45 +01:00
message.channel.send({ embed: upDoot });
}
2018-12-30 01:20:24 +01:00
}
module.exports = UpdootCommand;