伙计们,我正在制作一个不和谐的机器人,但我有一个错误,它说“名称‘机器人’未定义”。任何人都可以帮忙吗? 谢谢
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')
答案 0 :(得分:0)
您需要使用 Client
或 Bot
来实例化您的机器人。
在您的代码中,您将机器人实例化为 Client
,但您正在尝试使用 @bot.command()
创建命令。
您需要使用 @client.command()
或 @commands.command()
。