我正在学习 discord.py 并且我想制作发送嵌入式消息的机器人,例如(@user 已加入!)仅在用户加入特定语音频道时加入特定文本频道,例如(#music-cnsole),例如。 (音乐.vc)
当用户加入时
当用户离开时
@client.event
async def on_voice_state_update(member, before, after):
答案 0 :(得分:2)
Prelude> (x == 'a') =:= True where x free
Suspended
Prelude> let match_a 'a' = True in match_a x =:= True where x free
{x = 'a'}
Prelude>
on_voice_state_update
event in docs
请原谅我做了很多修改。