Discord.py如何让我的漫游器显示没有“正在播放”的活动

时间:2020-03-18 23:57:27

标签: python python-3.x discord discord.py

所以我要制造一个discord.py机器人,并且我想设置一个自定义状态。我的代码是:

workingstate = discord.Game( "Off sorting books" )
idlestate = discord.Game( "At the front desk" )

但是当我检查机器人时,它的状态显示为:

“正在在前台玩”或“正在关闭分类书

我尝试过:

workingstate = discord.Game(
    type=discord.ActivityType(-1),
    name="nothing, off sorting books" )

idlestate = discord.Game(
    type=discord.ActivityType(-1),
    name="at the front desk" )

但是它不再显示任何状态。

如何仅通过“ 在前台”设置我的状态?

感谢您的所有帮助!

1 个答案:

答案 0 :(得分:2)

当前无法实现,因为该终结点(“自定义状态”)仅对普通用户不可用。抱歉:/

如果您想了解更多有关此内容的信息,请点击此处,关于您的问题。 https://www.reddit.com/r/discordapp/comments/dm47sv/at_least_something_regarding_custom_status/?utm_source=share&utm_medium=web2x (另外,请在询问之前环顾谷歌,我记得几周前想知道与您相同的事情,并很容易找到这个reddit答案...:/)