You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/utility/donator.js

39 lines
1.1 KiB
JavaScript

const { Command } = require('discord-akairo');
const donator = require('../../models').donator;
class donatorCommand extends Command {
constructor() {
super('donator', {
aliases: ['donator', 'donators'],
category: 'utility',
clientPermissions: ['SEND_MESSAGES'],
description: {
content: 'All the people who donated for this bot <3',
usage: '',
examples: ['']
}
});
}
async exec(message) {
const Donator = await donator.findAll({order: ['id']});
let donatorMessage = 'Thanks to:\n';
if (Donator[0]) {
for (let i = 0; i < Donator.length; i++) {
if (this.client.users.resolve(Donator[i].get('userID').toString()) !== null)
donatorMessage += `**${this.client.users.resolve(Donator[i].get('userID').toString()).tag} (${Donator[i].get('userID')}) | ${Donator[i].get('comment')}**\n`;
else
donatorMessage += `**A user of discord (${Donator[i].get('userID')}) | ${Donator[i].get('comment')} (This user no longer share a server with the bot)**\n`;
}
} else {
donatorMessage += 'No one :(';
}
return message.reply(donatorMessage);
}
}
module.exports = donatorCommand;