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

View File

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