Задать вопрос
@ArtemiyVersh

(discord.py) Ignoring exception in command None: discord.ext.commands.errors.CommandNotFound: Command «brbr» is not found, в чем ошибка?

Вот мой код
import discord
from discord.ext import commands

client = commands.Bot(command_prefix="/")
@client.event

async def on_ready():
	print("Bot connected")
#***
@client.command()
async def brbr(ctx):
	await ctx.author.send("Hello, world")
client.run('token')
  • Вопрос задан
  • 426 просмотров
Подписаться 1 Простой 1 комментарий
Пригласить эксперта
Ответы на вопрос 1
@dmmorozoff
В чем проблема выучить основы питона?
@client.event
async def on_ready():
  print("Bot connected")

@client.command()
async def brbr(ctx):
  await ctx.send("Hello, world")
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы