在从 Discord.py 1.7.3 到 2.0 的过渡中,有图书馆发生了重大变化。一个显着的区别是 Intents 的引入,这是一种指定机器人应该监听哪些类型的事件的方法。
在 Discord.py 2.0 中,Intent 需要启用您的机器人中的特定功能。默认情况下,消息内容不包含在默认意图中。因此,即使您的机器人成功运行并报告已准备就绪,它也无法接收命令,因为它缺乏必要的权限。
解决方案是显式在您的机器人中启用消息内容意图。这允许它读取和响应消息内容,包括命令。
操作方法如下:
import discord from discord.ext import commands # Create an instance of Intents (default intents are already included) intents = discord.Intents.default() # Add the Message Content Intent to the Intents list intents.message_content = True # Create your Discord Bot bot = commands.Bot(command_prefix='$', intents=intents, help_command=None)
通过这些更改,您的机器人现在应该能够在 Discord.py 2.0 中正确接收和执行命令,就像它一样1.7.3 中做的。
以上是尽管没有错误,但为什么我的 Discord.py 2.0 机器人命令无法工作?的详细内容。更多信息请关注PHP中文网其他相关文章!