【问题标题】:Change Discord Bot (Python) game or activity更改 Discord Bot (Python) 游戏或活动
【发布时间】:2020-07-28 06:15:11
【问题描述】:

我正在尝试修复我的 Discord Bot,但我无法获得任何进一步的帮助,有人可以帮我吗?

    await client.change_presence(activity=discord.Activity(name="<hilfe for help."))

代码应该改变活动,但它什么也不做,只是给我一个错误。 我不知道要改变什么才能让它工作。

【问题讨论】:

  • 始终在问题中包含您的错误。

标签: bots discord discord.py


【解决方案1】:

来了。必须是 discord.Game 而不是 discord.Activity

@bot.event
async def on_ready():
    await bot.change_presence(activity=discord.Game('bread'))

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-08-19
    • 2019-04-17
    • 2021-07-30
    • 2020-12-21
    • 2021-06-29
    • 2021-03-27
    • 2021-06-04
    • 2020-04-16
    相关资源
    最近更新 更多