import discord, asyncio
from discord.flags import Intents
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_message(message):
if message.content.startswith('$hello'):
await message.channel. send('Hello!')
async def loopstart():
await client.login('токен бота', bot=True)
await client.connect(reconnect=True)
asyncio.run(loopstart())
При запуске ничего не происходит, у меня есть ивент on_ready, но он не срабатывает, бот заходит в сеть но абсолютно ничто не делает.