Answer the question
In order to leave comments, you need to log in
How can I enter the command well @client.command () so that it does not give an error but the events work?
code here
import discord
client = discord.Client()
@client.event
async def on_ready():
print('бот {0.user} загрузился'.format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('привет'):
await message.channel.send(f'{ message.author.mention }привет!')
@client.event
async def on_message(message):
if message.content.startswith('мой профиль!'):
emb = discord.Embed(title="Информация о пользователе", color=0x00ff00)
emb.add_field(name="Имя:", value=f"{message.author.display_name}",inline=False)
emb.add_field(name="Айди пользователя:", value=f"{message.author.id}",inline=False)
emb.add_field(name="Роль на сервере:", value="твоя мамаша",inline=False)
emb.add_field(name="Акаунт был создан:", value=message.author.created_at.strftime("%a ,%#d %B %Y ,%I:%M%pUTC") ,inline=False)
emb.set_thumbnail(url=message.author.avatar_url)
await message.channel.send(embed=emb)
@client.command()
async def test(ctx):
member = ctx.message.author
role_1 = member.guild.get_role(15171165410)# ади роли которую будет получать юзер
await member.add_roles(role_1)
client.run('токен')
Answer the question
In order to leave comments, you need to log in
1. Why two on_message handlers? There must be one.
2. client.command - class method not discord.Client, but discord.ext.commands.Bot. Rewrite to this class - it inherits discord.Client and supports all its methods.
3. If there is on_message, the commands will break, either remove it or add command processing correctly, see https://discordpy.readthedocs.io/en/latest/faq.htm...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question