我试图制作一个用于不和谐的快速机器人,我使用了以下代码:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='0')
@bot.command(name='ping')
async def ping(ctx):
await ctx.send('Pong!')
bot.run('MY_DISCORD_BOT_TOKEN')
我得到这个错误:
BotBase.__init__() missing 1 required keyword-only argument: 'intents'
我不确定缺少了什么参数,因为我遇到了这样的错误
1条答案
按热度按时间gojuced71#
您必须从开发门户启用intent,然后调用这些intent
意向文档-https://discordpy.readthedocs.io/en/stable/intents.html