我有这个脚本
@bot.event
async def on_ready():
channel = bot.get_channel('487165969903517696')
role = discord.utils.get(user.server.roles, name="CSGO_P")
message = await bot.send_message(channel, "React to me!")
while True:
reaction = await bot.wait_for_reaction(emoji="?", message=message)
await bot.add_roles(reaction.message.author, role)
当然,这只是将表情符号放到脚本和列出的角色中。我希望使用消息ID对列出的消息做出反应,然后在其后面添加列出的表情符号,如果用户操作不正确,则会发出一条错误消息,说明如何正确使用该命令。
当然,这只是将表情符号放到脚本和列出的角色中。我希望使用消息ID对列出的消息做出反应,然后在其后面添加列出的表情符号,如果用户操作不正确,则会发出一条错误消息,说明如何正确使用该命令。