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

      <bdo id='bzdCS'></bdo><ul id='bzdCS'></ul>
  • <legend id='bzdCS'><style id='bzdCS'><dir id='bzdCS'><q id='bzdCS'></q></dir></style></legend><tfoot id='bzdCS'></tfoot>

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

        不协调命令机器人没有响应(Python)

        Discord command bot doesn#39;t responde (python)(不协调命令机器人没有响应(Python))

            <tfoot id='G7Wxb'></tfoot>

            <legend id='G7Wxb'><style id='G7Wxb'><dir id='G7Wxb'><q id='G7Wxb'></q></dir></style></legend>
              <tbody id='G7Wxb'></tbody>

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

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

                  本文介绍了不协调命令机器人没有响应(Python)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的不一致机器人有一个问题:当我在不一致$ping上键入时,它没有响应我的PONG,我不知道为什么,我只是检查机器人是否具有管理员角色,以便它可以写作,我正在使用VsCode,它没有给我任何错误。
                  以下是代码

                  import discord
                  from discord.ext import commands
                  import requests
                  import json
                  import random
                  
                  client = discord.Client()
                  bot = commands.Bot(command_prefix='$')
                  
                  @bot.command()
                  async def ping(ctx):
                      await ctx.channel.send("pong")
                  
                  @client.event
                  async def on_ready():
                      print('We have logged in as {0.user}'.format(client))
                  
                  client.run("XXXXXXXXXXXXXXXXXXXXXXX")
                  

                  推荐答案

                  问题在于,您使用bot.command定义命令,但您只执行client.run。要解决此问题,请选择客户端或bot,但不能同时选择两者,例如,如果您选择bot,则如下所示:

                  import discord
                  from discord.ext import commands
                  import json
                  import random
                  
                  bot = commands.Bot(command_prefix='$')
                  
                  @bot.command()
                  async def ping(ctx):
                      await ctx.channel.send("pong")
                  
                  @bot.event
                  async def on_ready():
                      print('We have logged in as {0.user}'.format(bot))
                      
                  bot.run(Token)
                  

                  也不要使用请求,因为它正在阻塞。

                  这篇关于不协调命令机器人没有响应(Python)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
                  Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
                  Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
                  Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
                  Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
                  Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)

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

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