我正在使用 Discord 模块来制作一个不和谐的机器人。我很不擅长这个,因为我不久前开始编码。嗯,我有一些问题设置机器人前缀:它说,有一个在8号线的错误..unclosed client session并且NameError: name 'command' is not defined为好。这是错误:Traceback (most recent call last):File "SUBLIME TEXT PRUEBA.py", line 8, in <module>client = command.Bot(command_prefix = '!')NameError: name 'command' is not definedUnclosed client sessionclient_session: <aiohttp.client.ClientSession object at 0x0000017638A4F9E8>我也要把代码放在这里...import discordfrom discord.ext.commands import Botfrom discord.ext import commandsimport asyncioClient = discord.Client()client = command.Bot(command_prefix = '!')@client.eventasync def on_ready(): print('bot is redey')@client.eventasync def on_message(message): if message.content == 'keke': await client.send_message(message.channel, 'KEKEKEKEKK')
添加回答
举报
0/150
提交
取消