我正在使用 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 defined
Unclosed client session
client_session: <aiohttp.client.ClientSession object at 0x0000017638A4F9E8>
我也要把代码放在这里...
import discord
from discord.ext.commands import Bot
from discord.ext import commands
import asyncio
Client = discord.Client()
client = command.Bot(command_prefix = '!')
@client.event
async def on_ready():
print('bot is redey')
@client.event
async def on_message(message):
if message.content == 'keke':
await client.send_message(message.channel, 'KEKEKEKEKK')
饮歌长啸
相关分类