Dicsord. js информация о сервере - PullRequest
0 голосов
/ 29 мая 2020
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);
    }

};

Мне действительно нужно знать, как заставить его говорить, во что играют пользователи, кто-нибудь, пожалуйста, помогите!

1 Ответ

0 голосов
/ 30 мая 2020

Вы можете получить первый activity и отобразить это:

message.author.presence.activities[0].name
...