我目前正在使用Discord.js机器人,我希望我获得将机器人添加到行会的用户的ID或名称。
我希望添加机器人的人获得DM。
感谢您的回答!
答案 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.
});
});