“Python Discord Bot ждать ответа” Ответ

Python Discord Bot ждать ответа

# Use Client.wait_for to wait for on_message event.

@commands.command()
async def greet(ctx):
    await ctx.send("Say hello!")

    def check(m):
        return m.content == "hello" and m.channel == channel

    msg = await bot.wait_for("message", check=check)
    await ctx.send(f"Hello {msg.author}!")
Ugliest Unicorn

бот wait_for discord py

@client.event
async def on_message(message):
    if message.content.startswith('$greet'):
        channel = message.channel
        await channel.send('Say hello!')

        def check(m):
            return m.content == 'hello' and m.channel == channel

        msg = await client.wait_for('message', check=check)
        await channel.send('Hello {.author}!'.format(msg))
Cloudy Civet

Ответы похожие на “Python Discord Bot ждать ответа”

Вопросы похожие на “Python Discord Bot ждать ответа”

Больше похожих ответов на “Python Discord Bot ждать ответа” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования