不协调命令机器人没有响应(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)
也不要使用请求,因为它正在阻塞。
相关文章