到目前为止,我只是想知道这一点而已。
async def afk(ctx):
await ctx.author.edit(nick=(f'[AFK] {ctx.author.display_name}'))
await ctx.send("{0.author.mention} is now afk!".format(ctx.message))
print(f"{ctx.author.name} Used the Afk command")
@client.command()
async def back(ctx):
await ctx.author.edit(nick=(f'{ctx.author.name}'))
await ctx.send("{0.author.mention} has returned!".format(ctx.message))
print(f"{ctx.author.name} Used the Back command")```