• <small id='P1zwu'></small><noframes id='P1zwu'>

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

      <tfoot id='P1zwu'></tfoot>
        • <bdo id='P1zwu'></bdo><ul id='P1zwu'></ul>

        message.channel.id Discord PY

        时间:2023-10-11
      1. <tfoot id='QLf91'></tfoot>
            <tbody id='QLf91'></tbody>

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

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

                • <i id='QLf91'><tr id='QLf91'><dt id='QLf91'><q id='QLf91'><span id='QLf91'><b id='QLf91'><form id='QLf91'><ins id='QLf91'></ins><ul id='QLf91'></ul><sub id='QLf91'></sub></form><legend id='QLf91'></legend><bdo id='QLf91'><pre id='QLf91'><center id='QLf91'></center></pre></bdo></b><th id='QLf91'></th></span></q></dt></tr></i><div id='QLf91'><tfoot id='QLf91'></tfoot><dl id='QLf91'><fieldset id='QLf91'></fieldset></dl></div>
                  <legend id='QLf91'><style id='QLf91'><dir id='QLf91'><q id='QLf91'></q></dir></style></legend>
                  本文介绍了message.channel.id Discord PY的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试制作一个日志记录机器人,但是我遇到了 message.channel.id 的问题

                  I am attempting to make a logging bot however I am having issues with message.channel.id

                  触发事件时发送什么;消息 ID - 消息 ID |用户 - 用户 ID |他们的留言 |我的私人日志频道 - 他们发送消息的服务器

                  What is sent upon event being triggered; Message ID - Message ID | User - User ID | Their Message | My private log channel - Server where they sent message

                  代码的预期应用;消息 ID - 消息 ID |用户 - 用户 ID |他们的留言 |他们发送消息的服务器 - 他们发送消息的服务器

                  Intended application of the code; Message ID - Message ID | User - User ID | Their Message | Server where they sent the message - Server where they sent message

                  @bot.event
                  async def on_message(message):
                      user = message.author
                      user_id = message.author.id
                      message_id = message.id
                      content = message.content
                      channel = message.channel.id
                      guild = message.guild
                      if user.bot:
                          return
                      channel = bot.get_channel(my private log channel)
                      await channel.send(f"Message ID - {message_id} **|** {user} - {user_id} **|** {content} **|** #{channel} - {guild}")
                      await bot.process_commands(message)
                  

                  推荐答案

                  你使用了两次同一个变量channel

                  You used twice the same variable channel

                  只需重命名其中一个

                  以下是更改 2 行的示例:

                  Here is an example of a change of the 2 lines:

                  @bot.event
                  async def on_message(message):
                      user = message.author
                      user_id = message.author.id
                      message_id = message.id
                      content = message.content
                      message_channel = message.channel.id
                      guild = message.guild
                      if user.bot:
                          return
                      channel = bot.get_channel(my private log channel)
                      await channel.send(f"Message ID - {message_id} **|** {user} - {user_id} **|** {content} **|** #{message_channel} - {guild}")
                      await bot.process_commands(message)
                  

                  这篇关于message.channel.id Discord PY的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 heroku 上托管我的 discord.py 机器人? 下一篇:你能得到“关于我"吗?Discord 机器人的功能?

                  相关文章

                  最新文章

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

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

                  • <bdo id='nGOWC'></bdo><ul id='nGOWC'></ul>
                • <tfoot id='nGOWC'></tfoot>

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