Haha-Yes/commands/utility/donate.js

27 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-01-19 22:34:00 +01:00
const { Command } = require('discord-akairo');
class donateCommand extends Command {
constructor() {
super('donate', {
aliases: ['donate', 'donation', 'giveallmymoney', 'givemoney'],
2019-01-19 22:34:00 +01:00
category: 'utility',
2019-11-09 12:04:01 +01:00
clientPermissions: ['SEND_MESSAGES', 'EMBED_LINKS'],
2019-01-19 22:34:00 +01:00
description: {
content: 'Send donate link for the bot and support server',
usage: '',
examples: ['']
}
});
}
async exec(message) {
2019-11-22 12:30:20 +01:00
const Embed = this.client.util.embed()
2020-03-22 21:54:19 +01:00
.setColor(message.member ? message.member.displayHexColor : 'NAVY')
.setTitle('Donation link')
2019-12-08 12:59:03 +01:00
.setDescription('If you decide to donate, please use the feedback command to let the owner know about it so he can put you in the about and donator command\n[Paypal](https://www.paypal.me/supositware)\n[Patreon](https://www.patreon.com/bePatron?u=15330358)\n[Brave referal program](https://brave.com/hah459)\nTip me with Brave BAT token on [my website](https://namejeff.xyz/)\nYou can also donate ETH to ``0xe188F9062A74cc29e23D0602F4Fe335B1F5D8409``');
return message.channel.send(Embed);
2019-01-19 22:34:00 +01:00
}
}
module.exports = donateCommand;