我正在制造一个不和谐的机器人,并尝试使用Python设置播放状态,我尝试了GitHUb等不同的网站,但最终在我的代码中出现了建议,Python似乎不喜欢notepad++:C:\test.txt
有解决方案吗?
答案 0 :(得分:0)
好吧,在此之后,这是我的源代码,可在python 3.6
和discord.py 0.16.12
上使用。
import discord
import discord.game
client = discord.client()
@client.event
async def on_message(message):
if message.author == client.user:
return
@client.event
async def on_ready():
await client.change_presence(game=discord.Game(name=" with you ;)"))
client.run("<token>")
只需将其与您拥有的任何代码合并即可。