Rename userinfo to uinfo

This commit is contained in:
Sophie Mondz 2022-03-21 10:28:55 -05:00 committed by GitHub
parent 26d8a4f60d
commit 17969f62a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 58 additions and 0 deletions

58
commands/uinfo.js Normal file
View File

@ -0,0 +1,58 @@
module.exports = {
name: "uinfo",
description: "Gets info about an user, such as ID, Discord Join date and more",
syntax: "<User>",
execute(client, message, args) {
const {footerTxt} = require('../config.json');
let user = message.mentions.users.first() || args[0]
if (!user) user = message.author
const embed = {
"title": "Everything you've ever wanted to know about " + user.username + "!",
"color": 9442302,
"footer": {
"icon_url": message.author.displayAvatarURL(),
"text": footerTxt
},
"thumbnail": {
"url": user.displayAvatarURL()
},
"fields": [
{
"name": "Username",
"value": user.username,
"inline": true
},
{
"name": "Discriminator",
"value": user.discriminator,
"inline": true
},
{
"name": "Full Username",
"value": user.tag,
"inline": true
},
{
"name": "User Profile Picture",
"value": user.displayAvatarURL()
},
{
"name": "User Status",
value: user.presence.status
},
{
"name": "User ID",
"value": "``" + user.id + "``"
},
{
"name": "User Joined Discord",
"value": user.createdAt,
inline: true
},
]
};
message.channel.send({ embed: embed });
}
}