Discord Python Bot:更改状态

时间:2021-04-02 10:01:04

标签: python discord bots

我知道,您可以通过以下方式更改您的机器人状态:

@bot.event
async def on_ready():
    await bot.change_presence(activity=.....(name="....."))

但是有没有一种简单的方法可以通过使用 asyncio 每隔 5 秒更改一次状态? 感谢您的帮助 :D

1 个答案:

答案 0 :(得分:0)

基于 Cool or Fool - SRS 的命令,这里的答案非常有效:

@bot.event
async def on_ready():
    bot.loop.create_task(status_task()) # Create loop/task


async def status_task():
    while True:
        await bot.change_presence(activity=discord.Game("XXX"), status=discord.Status.online)
        await asyncio.sleep(ValueInSeconds) # Changes after x seconds
        await bot.change_presence(activity=discord.Game("XXX"), status=discord.Status.online)
        await asyncio.sleep(ValueInSeconds)
  • 您还可以将 watchlistening tostreaming 设置为状态。

有关更多信息,您可以查看other posts