我如何使用afk命令声明另一个用户是afk

时间:2020-06-15 04:23:22

标签: python command bots discord

到目前为止,我只是想知道这一点而已。

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")``` 

0 个答案:

没有答案