繁体   English   中英

我希望我的 discord 机器人识别我的状态并相应地更新我的嵌入 - Discord.Py

[英]I want my discord bot to recognize my status and update my embed accordingly - Discord.Py

elif message.content.startswith('!sirkris868'): embed = discord.Embed(title="sirkris868 :gem:", color=0x80a3dd) embed.add_field(name="KOS?", value="No", inline=False) embed.add_field(name="Status", value="My status here", inline=False) embed.add_field(name="Discord Tag", value="<@763786993058447431>", inline=False) #embed url thingey embed.set_image(url='https://cdn.discordapp.com/attachments/810062041960153108/810208599527129129/rqKso4V0ogQAAAAASUVORK5CYII.png') embed.set_footer(text='Designed by axb#0001') await message.channel.send(embed=embed)
status=message.guild.get_member((await bot.application_info()).owner.id).status
if status==discord.Status.online:
    status='Online'
elif status==discord.Status.offline:
    status='Offline'
elif status==discord.Status.idle:
    status='Idle'
else:
    status='Do Not Disturb'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM