本文介绍了允许Discord Rewrite bot响应其他bot的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个Discord机器人和一个Discord频道的webhook设置,可以每小时在该点上发送一条命令.但是,默认情况下,Discord Rewrite似乎会忽略其他bot发送的命令.我该如何禁用此功能?
I have a Discord bot and a webhook setup for a Discord channel to send a command every hour on the dot. However it seems that Discord Rewrite by default ignores commands sent from other bots. How do I go about disabling this?
我是否需要在每个命令的函数或on_message函数上进行某些修改?
Do I need to modify something on a per-command function or the on_message function?
当前消息
@bot.event
async def on_message(message):
await bot.process_commands(message)
找到了解决方法
@bot.event
async def on_message(message):
ctx = await bot.get_context(message)
await bot.invoke(ctx)
推荐答案
尝试添加检查,例如:
on_message
on_message
if message.author.bot == True:
#Do something
命令
if ctx.author.bot == True:
#Do something
这篇关于允许Discord Rewrite bot响应其他bot的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!