“Python Discord bot menunggu tanggapan” Kode Jawaban

Python Discord bot menunggu tanggapan

# 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 perselisihan 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

Jawaban yang mirip dengan “Python Discord bot menunggu tanggapan”

Pertanyaan yang mirip dengan “Python Discord bot menunggu tanggapan”

Lebih banyak jawaban terkait untuk “Python Discord bot menunggu tanggapan” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya