Discord.py on_message不是@ bot.event吗?

时间:2020-10-20 22:22:42

标签: python discord discord.py

import datetime
import discord
from discord import message, ActivityType
from discord.ext import commands
import asyncio

intents = discord.Intents().all()
bot = commands.Bot(command_prefix='.', intents=intents)
guild = 'SwiftNetwork'
time = datetime.date.today()
badword = ['bw', 'bw1', 'bw2', 'bw3']


@bot.event
async def on_ready():
    print('Wir sind als {1} auf {0} eingeloggt Vers: {2}'.format(guild, bot.user.name, discord.__version__))
    channel = bot.get_channel(id=697572461629407305)
    await channel.send('Heute ist der {0}.{1}.{2}'.format(time.day, time.month, time.year))
    # await bot.channel.send('Beep Boop Beep, Roboter Angriff wird gestartet..')
    bot.loop.create_task(status_task())


@bot.command()
async def hello(ctx):
    await ctx.channel.send(f"Hello! {ctx.author.mention}")


@bot.command()
async def ping(ctx):
    await ctx.channel.send(round(bot.latency * 1000))


@bot.command()
async def poll(ctx, message, *args):
    # print(len(args) + 1)
    emoji = '1️⃣'
    pollem = discord.Embed(title='', description=f'{message}')
    context = []

    reactionx = ['1️⃣', '2️⃣', '3️⃣', '4️⃣']

    if len(args) >= 2:

        for r in range(0, len(args), 2):
            reaction = ['1️⃣', '2️⃣', '3️⃣', '4️⃣']

        for x in range(1, len(args), 2):
            context.append(args[x])

        for a in range(0, len(args), 2):
            pollem.add_field(name=' {1} {0}'.format(args[a], reaction[int(r / 2)]), value=context[int(a / 2)],
                             inline=False)

        ms = await ctx.channel.send(embed=pollem)

    else:
        await ctx.channel.send('Check Args')


async def status_task():
    async def status_task():
        while True:
            await bot.change_presence(activity=discord.Game('Hello'), status=discord.Status.online)
            await asyncio.sleep(3)
            await bot.change_presence(activity=discord.Game('Moin'), status=discord.Status.online)
            await asyncio.sleep(3)
            await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="a song"), status=discord.Status.online)
            await asyncio.sleep(3)


@bot.event
async def on_message(ctx):
    if ctx.author.bot:
        return
    for word in ctx.content.split(' '):
        if word in badword:
            await ctx.delete()


问题出在最后一个事件中。 如果我像这样运行它,ctx.delete()将起作用,但是上面的所有命令都不会起作用。 如果我删除了@bot.event,则这些命令有效,但是ctx.delete()无效。

我想说这是@bot.event的原因,但是在on_ready中我也正在使用它,并且效果很好。 因此,现在我真的在代码中看不到任何问题。

1 个答案:

答案 0 :(得分:1)

使用on_message事件时,它将阻止其他命令起作用。要解决此问题,您需要使用await bot.process_commands(message)。您需要将其添加到on_message事件代码的末尾。

有关bot.process_commands的更多信息,您可以查看API references