我正在用discord.py重写我的机器人,并使用AutoShardedBot类系统。我想设置一个自定义播放状态,但是每次我搜索时,答案都是discord.Client()。这有可能吗?
答案 0 :(得分:1)
//set your status
client.user.setActivity("Being a bot or something lol", {type: "Playing",})
答案 1 :(得分:0)
以下是在机器人启动时设置自定义播放状态的示例:
if False then x:ys else ys
这不是唯一的 方法,但是我使用了这种方法,因为它使您可以轻松地在@bot.event
async def on_ready():
print("Ready!")
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.playing, name="| $help for commands"))
,listening
等之间进行切换。
如果要将watching
事件添加到嵌齿轮,则:
on_ready()
参考: