如何检查有人在dblpy中投票给我的Discord机器人?

时间:2020-05-30 06:37:41

标签: discord.py

我的discord机器人最近被top.gg接受,但是我无法为dblpy正确地整理文档。如何检查过去12个小时是否有人投票赞成我的机器人以使用某些命令?如果有人可以提供帮助,我将不胜感激,因为我什至不知道如何连接到API。谢谢大家。

1 个答案:

答案 0 :(得分:1)

@commands.Cog.listener()
async def on_dbl_vote(self, data):
    user = data['user']
    embed = discord.Embed(description="New Vote! Voter: {}".format(user))
    channel = self.bot.get_channel(int(ID))
    await channel.send(embed=embed)