“Entrée Python Discord” Réponses codées

Entrée Python Discord

@client.command(name="command")
async def _command(ctx):
    global times_used
    await ctx.send(f"y or n")

    # This will make sure that the response will only be registered if the following
    # conditions are met:
    def check(msg):
        return msg.author == ctx.author and msg.channel == ctx.channel and \
        msg.content.lower() in ["y", "n"]

    msg = await client.wait_for("message", check=check)
    if msg.content.lower() == "y":
        await ctx.send("You said yes!")
    else:
        await ctx.send("You said no!")

    times_used = times_used + 1

Discord.py Comment obtenir l'entrée de l'utilisateur

playerChoice = await bot.wait_for('message', check=check(context.author), timeout=30)
Delightful Dragonfly

Réponses similaires à “Entrée Python Discord”

Questions similaires à “Entrée Python Discord”

Plus de réponses similaires à “Entrée Python Discord” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code