Попытался исправить но теперь ошибка другая:
line 13, in on_ready
await client.add_reaction(Moji, emoji='')
AttributeError: 'Bot' object has no attribute 'add_reaction'
Этот ужас продолжается на протяжении месяца, прошу помогите пожалуйста
Вот мой код:
import discord
from discord.ext import commands
client = commands.Bot(command_prefix = ".",intents = discord.Intents.all())
@client.event
async def on_ready():
print(discord.__version__)
Channel = client.get_channel(815949348948934716)
Text= "Выбери свою роль"
Moji = await Channel.send(Text)
await client.add_reaction(Moji, emoji='')
@client.event
async def on_reaction_add(reaction, user):
Channel = client.get_channel(815949348948934716)
if reaction.message.channel.id != Channel:
return
if reaction.emoji == "":
Role = discord.utils.get(user.server.roles, name="PUBG")
await client.add_roles(user, Role)
client.run("My token")