“Bot Ping Discord.py” Code-Antworten

Discord.py Ping -Befehl

@bot.command(name="ping")
async def ping(ctx: commands.Context):
    await ctx.send(f"Pong! {round(bot.latency * 1000)}ms")
Gifted Gull

Bot Ping Discord.py

@client.command()
async def ping(ctx):
    before = time.monotonic()
    message = await ctx.send("Pong!")
    ping = (time.monotonic() - before) * 1000
    await message.edit(content=f"Pong!  `{int(ping)}ms`")
    
    #for discord.py rewrite
KaptainKermit1

Ähnliche Antworten wie “Bot Ping Discord.py”

Fragen ähnlich wie “Bot Ping Discord.py”

Weitere verwandte Antworten zu “Bot Ping Discord.py” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen