const Command = require('../../Structures/Command');
const Discord = require('discord.js');
module.exports = class extends Command {
constructor(...args) {
super(...args, {
aliases: ['mi']
});
}
async run(message, presence) {
let embed = new Discord.MessageEmbed()
embed.setAuthor(`Your Name: ` + message.author.username)
embed.setDescription("Your Info")
embed.setColor("#FF00FF")
embed.addField("Username", `${message.author.username}#${message.author.discriminator}`)
embed.addField("ID", message.author.id)
embed.addField("Created At", message.author.createdAt)
embed.addField("You Joined the server at", message.member.joinedAt)
embed.setFooter("Zorek | Userinfo")
message.channel.send(embed);
}
};
我真的需要知道如何说出用户在玩什么,请有人帮忙!