revolt-bot/commands/donate.js

26 lines
984 B
JavaScript

const Revolt = require('revolt.js');
const { client, logger, config } = require('..');
module.exports.meta = {
name: 'donate',
aliases: [],
description: 'hm yes give me your money hm yes'
}
/**
*
* @param { Revolt.Message } message
* @param { string[] } args
*/
module.exports.run = async (message, args) => new Promise(async (resolve, reject) => {
await client.channels.sendMessage(message.channel, {
content:
`Monero: **\`monero:87eQbhUqmtF3mZxXvNG6h5d8zognD1NMoFCUZndXyfzABh8UsKv5ikC4H5EMgDrYA7hK2SH1Sugw9PyGGg3fzjB4Sh5KBFJ\`**\n` +
`ETH/ETC: **\`0x72f9218ED66feC7F8deFea89B5998bE5A90Da489\`**\n` +
`Other ways of supporting me: **\`none\`**\n\u200b\n* * *\n\u200b\n` +
`In return for sending any amount of money to one of these addresses, you receive literally nothing.\n` +
`###### (this is a joke, i'm not begging for donations)`,
nonce: Date.now().toString()
}
);
});