how can i send cooldown in this format Hours:Minutes:seconds
I tried this ..
async def on_command_error(ctx,error): if isinstance(error,commands.CommandOnCooldown): s=error.retry_after mes=('Try again in {}s'.format(int(s))) await ctx.send(mes)
Voters
Make your own function for it, like this.
Thank you...
i tried this and it's working fine