Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this code which I tried making to have my bot status saying how many servers he is in. But there is an error and PyCharm says that bot doesn't have the attribute servers. How do I fix it?

await bot.change_presence(status=discord.Game(name="on " + str(len(bot.servers)) + " Servers.", type=0))
question from:https://stackoverflow.com/questions/65651290/why-isnt-my-status-code-working-on-pycharm-python-3-8

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

bot.servers does not exist. Use bot.guilds instead.

await bot.change_presence(status=discord.Game(name="on " + str(len(bot.guilds)) + " Servers.", type=0))```

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...