gpt4 book ai didi

python - Discord bot 将消息从服​​务器复制到我的服务器

转载 作者:行者123 更新时间:2023-12-04 12:58:47 24 4
gpt4 key购买 nike

是否可以使用 Discord 中的机器人将新消息从 X 服务器 Y channel 复制到我的 X 服务器 Y channel ?
我要从中复制消息的服务器是我以用户身份连接的官方游戏服务器(在 Discord 上),而我的服务器是该游戏的公会服务器,我要在其中发送新闻和更新公告。

对不起我的英语不好

最佳答案

这当然是可能的,使用 on_message()事件:

@bot.event
async def on_message(message):
await bot.process_commands(message) # add this if also using cmd decorators
if message.channel.id == THEIR_CHANNEL_ID_HERE:
target_channel = bot.get_channel(YOUR_ANNOUNCEMENT_CHANNEL_ID_HERE)
await target_channel.send(message.content)

当然,如果您愿意,您可以添加对文件附件、特定用户等的检查。

引用文献:
  • Bot.process_commands()
  • TextChannel.id
  • Client.get_channel()
  • Message.attachments
  • Member.id
  • 关于python - Discord bot 将消息从服​​务器复制到我的服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62064577/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com