Update userinfo.js

PTB Build 423 brings fixes to userinfo:
+ Command now runs correctly
This command is not yet complete and may be buggy.
This commit is contained in:
Anthony M 2021-01-20 11:29:05 -06:00 committed by GitHub
parent 818b024a14
commit db278e20ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 56 deletions

View File

@ -1,6 +1,6 @@
module.exports = {
name: 'info',
description: 'Shows bot and host information',
execute(client, message, args) {
@ -21,13 +21,13 @@ module.exports = {
let uptime = `${days}**, **${hours}**, **${minutes}**, **${seconds}`;
return uptime;
};
const version = ("Public Test Release 2")
const version = ("Public Test Buld 3, Based on dev Build 424")
const release = ("anitrox_ptb")
const os = require("os")
const embed = {
"title": "<:NyabotInfo:697145463350231040> Information about Anitrox",
"description": "Everything you've ever wanted to know about Anitrox!",
@ -72,7 +72,7 @@ const version = ("Public Test Release 2")
"name": "<:cpu:793672442056802354> CPU Type",
"value": process.arch
},
{
"name": "<:hostos:793866961675223090> OS Type",
"value": process.platform + " / " + os.version()

View File

@ -1,52 +1,42 @@
const { User } = require("discord.js");
module.exports = {
name: 'userinfo',
description: 'Shows information about you or another user.',
execute(client, message, args) {
const taggedUser = message.mentions.users.first();
//Actual code
const embed = {
"title": "<:userinfo:793885335498522685> **User Information**",
"description": "Everything you've ever wanted to know about **" + taggedUser.username + ("!**"),
"color": 11038194,
"footer": {
"icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
"text": "Anitrox © IDeletedSystem64 2018-2021. All Rights Reserved"
},
"thumbnail": {
"url": taggedUser.displayAvatarURL({ dynamic: true })
},
"fields": [
{
"name": "<:userquestion:793984046912110633> **Full Username**",
"value": taggedUser.username + ("#") + taggedUser.discriminator
},
{
"name": "<:userquestion:793984046912110633> User Status",
"value": taggedUser.status,
"value": taggedUser.presence
},
{
"name": "<:userquestion:793984046912110633> User ID",
"value": taggedUser.id
},
{
"name": "<:userquestion:793984046912110633> User Joined Discord",
"value": taggedUser.CreatedAt,
"inline": true
},
{
"name": "<:userquestion:793984046912110633> User Joined Server",
"value": "tba",
"inline": true
}
]
};
message.channel.send({ embed });
}
};
name: "userinfo",
description: "Gets info about an user, such as ID, Discord Join date and more.",
execute(client, message, args) {
const taggedUser = message.mentions.users.first();
const embed = {
"title": "Everything you've ever wanted to know about taggedUser.username!",
"color": 172544,
"footer": {
"icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
"text": "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64"
},
// This should get the user icon to display as the command thumbnail.
"thumbnail": {
"url": "https://cdn.discordapp.com/embed/avatars/0.png"
},
"fields": [
{
"name": "Full Username",
"value": taggedUser.tag
},
{
"name": "User ID",
"value": "``" + taggedUser.id + "``"
},
{
"name": "User Joined Discord",
"value": taggedUser.CreatedAt,
"inline": true
},
{
"name": "User Joined Server",
"value": "are inline fields",
"inline": true
}
]
};
message.channel.send({ embed });
}
}