From 3cc802cf16f3243f8814b17ba9d56bc9b5244a91 Mon Sep 17 00:00:00 2001 From: Supositware Date: Sat, 19 Jan 2019 22:34:00 +0100 Subject: [PATCH] Donate command --- commands/utility/donate.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 commands/utility/donate.js diff --git a/commands/utility/donate.js b/commands/utility/donate.js new file mode 100644 index 00000000..279fe8fa --- /dev/null +++ b/commands/utility/donate.js @@ -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; \ No newline at end of file