discord py 中的反应

Reaction in discord py

我有 1 个问题。我的机器人(discord.py)如何在用户添加后删除反应。也就是说,用户单击反应,创建频道,然后删除反应。请帮忙

如果您尝试删除 Reaction,您可以使用 await remove_reaction(emoji, member) 函数(more here) and to create a Channel you can use the await create_text_channel(name, *, overwrites=None, category=None, reason=None, **options) funktion (more here). To find out how to work with them, please read the Docs