“Python Discord Bot espera la respuesta” Código de respuesta

Python Discord Bot espera la respuesta

# 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

Bot 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

Respuestas similares a “Python Discord Bot espera la respuesta”

Preguntas similares a “Python Discord Bot espera la respuesta”

Más respuestas relacionadas con “Python Discord Bot espera la respuesta” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código