<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)

        时间:2024-08-22

            <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)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Bot前缀中的空格 下一篇:合并具有多索引的两个数据帧

                  相关文章

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

                    1. <tfoot id='xHHhj'></tfoot>
                      • <bdo id='xHHhj'></bdo><ul id='xHHhj'></ul>
                      <legend id='xHHhj'><style id='xHHhj'><dir id='xHHhj'><q id='xHHhj'></q></dir></style></legend>
                    2. <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>