Donate command
This commit is contained in:
parent
1547eb1798
commit
3cc802cf16
1 changed files with 21 additions and 0 deletions
21
commands/utility/donate.js
Normal file
21
commands/utility/donate.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
const { Command } = require('discord-akairo');
|
||||||
|
|
||||||
|
class donateCommand extends Command {
|
||||||
|
constructor() {
|
||||||
|
super('donate', {
|
||||||
|
aliases: ['donate'],
|
||||||
|
category: 'utility',
|
||||||
|
description: {
|
||||||
|
content: 'Send donate link for the bot and support server',
|
||||||
|
usage: '',
|
||||||
|
examples: ['']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(message) {
|
||||||
|
return message.author.send('If you want to donate you can do it with paypal at https://www.paypal.me/supositware or here https://donatebot.io/checkout/487640086859743232?buyer=267065637183029248');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = donateCommand;
|
Loading…
Reference in a new issue