如何解决“名称'bot'未定义”错误?

时间:2021-01-23 11:14:04

标签: python error-handling discord bots

伙计们,我正在制作一个不和谐的机器人,但我有一个错误,它说“名称‘机器人’未定义”。任何人都可以帮忙吗? 谢谢

import discord
from discord.ext import commands
from discord.ext.commands import has_permissions

client = commands.Bot(command_prefix = ';')


@client.event
async def on_ready():
   print("{0.user} logged in as".format(client))
   

@bot.command(pass_context=True)
@has_permissions(administrator=True)
async def help(ctx):
   await ctx.send('Help')

client.run('TOKEN')

1 个答案:

答案 0 :(得分:0)

您需要使用 ClientBot 来实例化您的机器人。 在您的代码中,您将机器人实例化为 Client,但您正在尝试使用 @bot.command() 创建命令。

您需要使用 @client.command()@commands.command()