【发布时间】:2022-01-21 12:37:05
【问题描述】:
所以基本上,我正在创建一个命令,让您为某事投票,5 分钟后它会检查哪个更高。
但问题是我不知道该怎么做。
到目前为止,这是我的代码:
@client.command()
async def strongy_boi(ctx, boi):
if boi == "copper-golem-allay":
mess = await ctx.send(":heart: = copper golem :blue_heart: = allay")
await mess.add_reaction('❤️')
await mess.add_reaction('????')
await asyncio.sleep(5)
#do code that check which is higher
【问题讨论】:
标签: python python-3.x discord.py