<legend id='CuBH0'><style id='CuBH0'><dir id='CuBH0'><q id='CuBH0'></q></dir></style></legend>

      <i id='CuBH0'><tr id='CuBH0'><dt id='CuBH0'><q id='CuBH0'><span id='CuBH0'><b id='CuBH0'><form id='CuBH0'><ins id='CuBH0'></ins><ul id='CuBH0'></ul><sub id='CuBH0'></sub></form><legend id='CuBH0'></legend><bdo id='CuBH0'><pre id='CuBH0'><center id='CuBH0'></center></pre></bdo></b><th id='CuBH0'></th></span></q></dt></tr></i><div id='CuBH0'><tfoot id='CuBH0'></tfoot><dl id='CuBH0'><fieldset id='CuBH0'></fieldset></dl></div>
    1. <tfoot id='CuBH0'></tfoot>

    2. <small id='CuBH0'></small><noframes id='CuBH0'>

        <bdo id='CuBH0'></bdo><ul id='CuBH0'></ul>
    3. Discord.py 检查用户是否对特定的表情符号做出反应

      时间:2023-10-11
        • <i id='hbiVv'><tr id='hbiVv'><dt id='hbiVv'><q id='hbiVv'><span id='hbiVv'><b id='hbiVv'><form id='hbiVv'><ins id='hbiVv'></ins><ul id='hbiVv'></ul><sub id='hbiVv'></sub></form><legend id='hbiVv'></legend><bdo id='hbiVv'><pre id='hbiVv'><center id='hbiVv'></center></pre></bdo></b><th id='hbiVv'></th></span></q></dt></tr></i><div id='hbiVv'><tfoot id='hbiVv'></tfoot><dl id='hbiVv'><fieldset id='hbiVv'></fieldset></dl></div>

          <small id='hbiVv'></small><noframes id='hbiVv'>

            <tbody id='hbiVv'></tbody>

            <bdo id='hbiVv'></bdo><ul id='hbiVv'></ul>
            <tfoot id='hbiVv'></tfoot>

                <legend id='hbiVv'><style id='hbiVv'><dir id='hbiVv'><q id='hbiVv'></q></dir></style></legend>
                本文介绍了Discord.py 检查用户是否对特定的表情符号做出反应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我想知道是否有办法使用 Discord.py 来检查某人是否对特定表情符号做出了反应.

                I was wondering if there's a way to check if someone reacted with a specific emoji using Discord.py.

                推荐答案

                下面的命令会回复一条消息,然后等待一个 :smile::custom_emoji: 对该消息的反应.

                The below command will reply with a message, then wait for either a :smile: or :custom_emoji: reaction on that message.

                from discord.utils import get
                from discord.ext import commands
                
                bot = commands.Bot("!")
                
                @bot.command(pass_context=True)
                async def checkreacts(ctx):
                    msg1 = await bot.say("React to me!")
                    custom_emoji = get(ctx.message.server.emojis, name="custom_emoji")
                    reaction = await bot.wait_for_reaction(['N{SMILE}', custom_emoji], msg1)
                    await bot.say("You responded with {}".format(reaction.emoji))
                
                bot.run("token")
                

                这篇关于Discord.py 检查用户是否对特定的表情符号做出反应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Discord-py Rewrite - Cog 中的基本 aiohttp 网络服务器 下一篇:你如何让 Discord 机器人删除用户对 discord.py 中消

                相关文章

                最新文章

                  <tfoot id='bZjoj'></tfoot>

                1. <small id='bZjoj'></small><noframes id='bZjoj'>

                2. <legend id='bZjoj'><style id='bZjoj'><dir id='bZjoj'><q id='bZjoj'></q></dir></style></legend>

                    <i id='bZjoj'><tr id='bZjoj'><dt id='bZjoj'><q id='bZjoj'><span id='bZjoj'><b id='bZjoj'><form id='bZjoj'><ins id='bZjoj'></ins><ul id='bZjoj'></ul><sub id='bZjoj'></sub></form><legend id='bZjoj'></legend><bdo id='bZjoj'><pre id='bZjoj'><center id='bZjoj'></center></pre></bdo></b><th id='bZjoj'></th></span></q></dt></tr></i><div id='bZjoj'><tfoot id='bZjoj'></tfoot><dl id='bZjoj'><fieldset id='bZjoj'></fieldset></dl></div>

                    • <bdo id='bZjoj'></bdo><ul id='bZjoj'></ul>