我有多个命令,但它们似乎都不起作用,我把它们都放在一个on_消息事件中,我认为这是一个prolem,所以我把它们都移到了单独的命令中。没有错误。
import discord
from googleapiclient.discovery import build
from discord.ext import commands
from PIL import Image, ImageFont, ImageDraw
import requests
import json
import textwrap
import random
yt_api_key = ''
youtube = build("youtube", 'v3', developerKey=yt_api_key)
description = '''blank'''
intents = discord.Intents.default()
client = discord.Client()
bot = commands.Bot(command_prefix='$', description=description, intents=intents)
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@bot.command()
async def test(ctx):
await ctx.send('test')
提前谢谢!
1条答案
按热度按时间wlzqhblo1#
我发现了问题!我要把这个留给其他有同样问题的人。我所做的只是删除bot变量并将其放入客户机变量。我认为这两者是相互重叠的。