Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
969 views
in Technique[技术] by (71.8m points)

discord.py - Why isn't my status code working on PyCharm (Python 3.8)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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))```

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...