首頁 > 後端開發 > Python教學 > 為什麼我的 Discord 指令在實作 `on_message()` 後停止運作?

為什麼我的 Discord 指令在實作 `on_message()` 後停止運作?

Susan Sarandon
發布: 2024-12-13 15:58:18
原創
984 人瀏覽過

Why Do My Discord Commands Stop Working After Implementing `on_message()`?

執行on_message() 後命令被停用

使用discord.py 的on_message() 事件時,使用者可能會遇到命令執行的問題停止工作。這是由於 on_message() 的重寫性質造成的,除非專門啟用,否則它會停用命令的執行。

解決問題

要解決此問題,需要在 on_message() 函數末尾添加對 bot.process_commands(message) 的呼叫至關重要。此行指示 Discord 處理訊息中存在的任何命令。

修改後的程式碼

這是程式碼的修改版本,其中包含bot.process_commands(message):

import discord
import asyncio
from discord.ext import commands

bot = commands.Bot(command_prefix = '-')

@bot.event
async def on_ready():
    print('Logged in as')
    print(bot.user.name)
    print(bot.user.id)
    print('------')

@bot.event
async def on_message(message):
    if message.content.startswith('-debug'):
        await message.channel.send('d')

    # Process any commands present in the message
    await bot.process_commands(message)

@bot.command(pass_context=True)
async def ping(ctx):
    await ctx.channel.send('Pong!')

@bot.command(pass_context=True)
async def add(ctx, *, arg):
    await ctx.send(arg)
登入後複製

說明

預設的on_message()事件包括內部對 bot.process_commands(message) 的呼叫。該行允許執行訊息中的命令。透過覆寫預設的 on_message(),您可以有效地阻止命令的處理。手動新增 bot.process_commands(message) 可以恢復所需的功能。

結論

透過實作上述解決方案,您可以確保 on_message() 中的偵錯輸出並且您的自訂命令可以正常運作。

以上是為什麼我的 Discord 指令在實作 `on_message()` 後停止運作?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板