From abe405536ada3cb26cde698aff4f3ce50c68aa41 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Mon, 8 Oct 2018 17:42:56 +0200 Subject: [PATCH] Added a donation command ( will probably remove later ) --- commands/utility/supportme.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 commands/utility/supportme.js diff --git a/commands/utility/supportme.js b/commands/utility/supportme.js new file mode 100644 index 00000000..dea46314 --- /dev/null +++ b/commands/utility/supportme.js @@ -0,0 +1,15 @@ +const { Command } = require('discord.js-commando'); +module.exports = class supportMeCommand extends Command { + constructor(client) { + super(client, { + name: 'supportme', + group: 'fun', + memberName: 'supportme', + description: `Support me and my bot`, + }); + } + + async run(message, { text }) { + message.say('If you want to support me and my bot you can donate here\nhttps://www.paypal.me/supositware or here https://donatebot.io/checkout/487640086859743232\n(This is totally optionnal dont feel forced to do it)'); + } +}; \ No newline at end of file