作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以使用 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/
我是一名优秀的程序员,十分优秀!