Haha-Yes/commands/utility/about.js

31 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-03-25 00:51:33 +01:00
const { Command } = require('discord-akairo');
const { MessageEmbed } = require('discord.js');
const { ownerID } = require('../../config.json');
2019-03-25 00:51:33 +01:00
class aboutCommand extends Command {
constructor() {
super('about', {
aliases: ['about', 'credit'],
2019-03-25 00:51:33 +01:00
category: 'utility',
description: {
content: 'About me ( the bot )',
usage: '',
examples: ['']
}
});
}
async exec(message) {
const aboutEmbed = new MessageEmbed()
.setColor('#ff9900')
.setAuthor(`${this.client.users.get(ownerID).username}#${this.client.users.get(ownerID).discriminator} (${ownerID})`, this.client.user.avatarURL)
2019-03-25 00:51:33 +01:00
.setTitle('About me')
.setURL('https://gitlab.com/LoicBersier/DiscordBot')
2019-05-16 16:33:41 +02:00
.setDescription('This bot is made using [discord.js](https://github.com/discordjs/discord.js) & [Discord-Akairo](https://github.com/discord-akairo/discord-akairo)\nHelp command from [hoshi](https://github.com/1Computer1/hoshi)\n* [Rantionary](https://github.com/RantLang/Rantionary) for there dictionnary.\nThanks to Tina the Cyclops girl#5759 for inspiring me for making this bot!')
2019-05-11 19:55:27 +02:00
.setFooter('Gitlab link in the title');
2019-03-25 00:51:33 +01:00
message.channel.send(aboutEmbed);
}
}
module.exports = aboutCommand;