如何获得添加机器人的用户?

时间:2020-07-20 15:24:35

标签: discord.js

我目前正在使用Discord.js机器人,我希望我获得将机器人添加到行会的用户的ID或名称。

我希望添加机器人的人获得DM。

感谢您的回答!

1 个答案:

答案 0 :(得分:2)

client.on("guildCreate", guild => { // This event fires when a guild is created or when the bot is added to a guild.
    guild.fetchAuditLogs({type: "BOT_ADD", limit: 1}).then(log => { // Fetching 1 entry from the AuditLogs for BOT_ADD.
        log.entries.first().executor.send(`Thank you for adding me to ${guild.name}!`).catch(e => console.error(e)); // Sending the message to the executor.
    });
});
相关问题