“Discord.py Ping Command” Kod odpowiedzi

Discord.py Ping Command

@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

Odpowiedzi podobne do “Discord.py Ping Command”

Pytania podobne do “Discord.py Ping Command”

Więcej pokrewnych odpowiedzi na “Discord.py Ping Command” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu