JaBa/commands/Images/avatar.js

31 lines
886 B
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js"),
Discord = require("discord.js");
class Avatar extends Command {
constructor (client) {
super(client, {
name: "avatar",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ],
nsfw: false,
ownerOnly: false,
cooldown: 5000
});
}
async run (message, args) {
let user = await this.client.resolveUser(args[0]);
2021-12-11 01:11:50 +05:00
if (!user) user = message.author;
2021-12-24 20:52:27 +05:00
const avatarURL = user.displayAvatarURL({ size: 512, dynamic: true, format: "png" });
if (message.content.includes("-v")) message.channel.send(`<${avatarURL}>`);
2021-12-10 21:39:54 +05:00
const attachment = new Discord.MessageAttachment(avatarURL, `avatar.${avatarURL.split(".").pop().split("?")[0]}`);
2021-12-24 20:52:27 +05:00
2021-12-10 21:39:54 +05:00
message.channel.send(attachment);
}
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
2021-12-11 01:11:50 +05:00
module.exports = Avatar;