discord.py @bot.command() not running(discord.py @bot.command() 没有运行)
问题描述
我有类似的东西.
from flask import Flask
from threading import Thread
import discord
from discord.ext import commands, tasks
from discord.utils import get
import requests
from Moderator.badwords import words
import time
import datetime
from Stats.uptime import data
help_command = commands.DefaultHelpCommand(
no_category = 'Commands'
)
intents = discord.Intents().all()
bot = commands.Bot(command_prefix='!', description="Hey there, I'm Botty (for example)!", help_command=help_command, intents=intents)
@bot.command()
async def hello(ctx):
await ctx.send(ctx.author.mention + " hello!")
@bot.event
async def on_ready():
print('Ready!')
@bot.event
async def on_message(message):
for word in words:
if word in message.content.lower():
await message.delete()
await message.channel.send("Oops! Seems like " + message.author.mention + " was trying to send a message that was breaking the " + bot.get_channel(783064049859559434).mention + ". Luckily, I deleted it before it caused any more damage. Don't send any more messages like that!
If you think that I made an error, please report it in " + bot.get_channel(783074030265040916).mention + ", " + bot.get_channel(783074002255478848).mention + " or in " + bot.get_channel(783092164590174251).mention)
@bot.event
async def on_member_join(member):
print(f"{member} joined the server")
bot.run(TOKEN)
现在,我可以毫无错误地编译和运行此代码,并且当成员加入或用户发送消息时,一切正常.但是当涉及到运行命令时,它甚至没有启动.我有什么遗漏吗?
Now, I can compile and run this code with no errors, and when a member joins or a user sends a message, all works perfectly fine. But when it comes to run commands, it does not even start. Is there something i'm missing?
提前致谢
推荐答案
文档:
覆盖默认提供的 on_message 会禁止运行任何额外的命令.要解决此问题,请在 on_message 末尾添加 bot.process_commands(message) 行.
Overriding the default provided on_message forbids any extra commands from running. To fix this, add a
bot.process_commands(message)line at the end of your on_message.
如果您覆盖 on_message,则需要使用 await bot.process_commands(message) 以便处理命令.尝试将其添加到您的 on_message 事件中.
If you override an on_message, you need to use await bot.process_commands(message) so that the commands are processed. Try adding that to your on_message event.
这篇关于discord.py @bot.command() 没有运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:discord.py @bot.command() 没有运行
基础教程推荐
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
