Discord.js将所有消息转发给服务器所有者

时间:2020-08-21 00:44:02

标签: javascript discord discord.js

是否可以执行此流程,以及如何使用Discord.js进行处理

USER ➜(用户消息漫游器)➜ BOT ➜(用户转发消息)➜特定用户

示例: John ➜“消息:您好”➜ BOT ➜(John:Hello)Hello 服务器所有者

1 个答案:

答案 0 :(得分:-1)

尝试一下:

client.on("message", async message => {
    if (message.author.bot) return false;
    if (message.channel.type !== "dm") return false;

    const User = await message.client.users.cache.get("<User ID>");
    if (!User) return false;
    User.send(`${message.author.tag}: \n ${message.content}`, {split: true}).catch(error => console.log(error));
});

这将检测所有发送到机器人的DM并将它们发送给您。