user11229202
user11229202

Reputation:

Discord.py how to have my bot show an activity without the "Playing"

So I'm making a discord.py bot, and I want to make a custom status. My code is:

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

But when I check the bot, it show the status as:

"Playing At the front desk" or "Playing Off sorting books"

I tried:

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

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

But it doesn't show any status anymore.

How can I make my status simply "At the front desk"?

Thanks for all your help!

Upvotes: 0

Views: 519

Answers (1)

TCoded
TCoded

Reputation: 413

That is currently not possible as that endpoint (Custom Status) was not made available to bots, only normal users. Sorry :/

If you want to read more about this, here is a reddit post about your issue. https://www.reddit.com/r/discordapp/comments/dm47sv/at_least_something_regarding_custom_status/?utm_source=share&utm_medium=web2x (Also, please look around google before asking, I remember wondering the same thing as you a few weeks back and found this reddit answer very easily... :/ )

Upvotes: 2

Related Questions