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

    1. <i id='gNqFI'><tr id='gNqFI'><dt id='gNqFI'><q id='gNqFI'><span id='gNqFI'><b id='gNqFI'><form id='gNqFI'><ins id='gNqFI'></ins><ul id='gNqFI'></ul><sub id='gNqFI'></sub></form><legend id='gNqFI'></legend><bdo id='gNqFI'><pre id='gNqFI'><center id='gNqFI'></center></pre></bdo></b><th id='gNqFI'></th></span></q></dt></tr></i><div id='gNqFI'><tfoot id='gNqFI'></tfoot><dl id='gNqFI'><fieldset id='gNqFI'></fieldset></dl></div>
    2. <tfoot id='gNqFI'></tfoot>
      <legend id='gNqFI'><style id='gNqFI'><dir id='gNqFI'><q id='gNqFI'></q></dir></style></legend>
      • <bdo id='gNqFI'></bdo><ul id='gNqFI'></ul>
    3. discord.py 检查是否有大规模加入(raid)

      时间:2023-10-10
      <tfoot id='5rRnr'></tfoot>

            <bdo id='5rRnr'></bdo><ul id='5rRnr'></ul>

                <legend id='5rRnr'><style id='5rRnr'><dir id='5rRnr'><q id='5rRnr'></q></dir></style></legend>

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

                <small id='5rRnr'></small><noframes id='5rRnr'>

                  <tbody id='5rRnr'></tbody>
              1. 本文介绍了discord.py 检查是否有大规模加入(raid)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我想让我的机器人使用 discord.py 检查是否有超过 10 人在 15 秒内进入服务器

                I would like to have my bot check if more than 10 people enter in 15 seconds in a server with discord.py

                discord.py有默认功能还是我自己创建?

                Is there a default function of discord.py or do I have to create it myself?

                推荐答案

                找不到这样的功能!但是制作一个并不难:

                I couldn't find such a function! However making one is not so hard:

                import time
                
                
                ...
                
                THRESHOLD = 10
                m = []
                time_ = time.time()
                
                def antiraid(member):
                    global m
                    global time_
                    m.append(member)
                    if time.time() - time_ >= 15.0:
                        time_ = time.time()
                        if len(m) >= THRESHOLD:
                            return True
                        else:
                            return False
                        m = []
                
                
                @bot.event
                async def on_member_join(member):
                    bool_ = antiraid(member)
                    print('Raid state: %s' % bool_)
                    
                

                注意:这只是一个想法如何制作这个功能!您也可以使用可能更好的线程来实现这一点.

                Note: This is only an idea how to make this function! You can also implement this with threads which might be better.

                这篇关于discord.py 检查是否有大规模加入(raid)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何获取某人帐户的年龄?不和谐.py 下一篇:有没有办法检查固定的消息,并且只使用 discor

                相关文章

                最新文章

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

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

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

                  1. <tfoot id='onPxV'></tfoot>
                    • <bdo id='onPxV'></bdo><ul id='onPxV'></ul>