Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python discord bot wait for response

# 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}!")
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #discord #bot #wait #response
ADD COMMENT
Topic
Name
8+2 =