• <tfoot id='x0ypS'></tfoot>

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

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

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

        如何使用 discord.py 获取不和谐服务器中所有成员

        时间:2023-10-10
          <bdo id='1RA4m'></bdo><ul id='1RA4m'></ul>
            <tbody id='1RA4m'></tbody>
            1. <small id='1RA4m'></small><noframes id='1RA4m'>

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

                • 本文介绍了如何使用 discord.py 获取不和谐服务器中所有成员的列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试生成我服务器中所有成员的列表:

                  I am trying to generate a list of all of the members in my server:

                  @client.event
                  async def on_ready():
                      for guild in client.guilds:
                          for member in guild.members:
                              print(member)
                  

                  但是它只打印自己而不打印其他成员.我写错了什么还是我需要对机器人做些什么?

                  However it is only printing itself and none of the other members. Have I written something wrong or is there something I need to do with the bot?

                  推荐答案

                  需要开启intents.members

                  intents = discord.Intents.default()
                  intents.members = True
                  
                  client = commands.Bot(..., intents=intents)
                  # Or if you're using `discord.Client`
                  client = discord.Client(intents=intents)
                  

                  还要确保在开发者门户

                  文档

                  这篇关于如何使用 discord.py 获取不和谐服务器中所有成员的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:检查用户是否在语音频道 discord.py 下一篇:更改用户的昵称——Discord.py

                  相关文章

                  最新文章

                    1. <legend id='gc40A'><style id='gc40A'><dir id='gc40A'><q id='gc40A'></q></dir></style></legend>

                        <bdo id='gc40A'></bdo><ul id='gc40A'></ul>

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

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