Discord.py 添加新事件后事件不起作用

Discord.py events not working after adding new events

我正在使用 discord.py,每次我向我的脚本添加新事件时,旧事件都不起作用。不确定问题出在哪里,因为我在最后包含了 await client.process_commands(message) 。顶部附近的大部分代码都是针对按键的,与不和谐 api 无关。感谢您的帮助!

代码:(我遇到问题的代码靠近底部。)

from os import waitpid
import discord
from discord.ext import commands
from discord import client

client = commands.Bot(command_prefix = '!')
SendInput = ctypes.windll.user32.SendInput
 
PUL = ctypes.POINTER(ctypes.c_ulong)
class KeyBdInput(ctypes.Structure):
    _fields_ = [("wVk", ctypes.c_ushort),
                ("wScan", ctypes.c_ushort),
                ("dwFlags", ctypes.c_ulong),
                ("time", ctypes.c_ulong),
                ("dwExtraInfo", PUL)]

class HardwareInput(ctypes.Structure):
    _fields_ = [("uMsg", ctypes.c_ulong),
                ("wParamL", ctypes.c_short),
                ("wParamH", ctypes.c_ushort)]

class MouseInput(ctypes.Structure):
    _fields_ = [("dx", ctypes.c_long),
                ("dy", ctypes.c_long),
                ("mouseData", ctypes.c_ulong),
                ("dwFlags", ctypes.c_ulong),
                ("time",ctypes.c_ulong),
                ("dwExtraInfo", PUL)]

class Input_I(ctypes.Union):
    _fields_ = [("ki", KeyBdInput),
                 ("mi", MouseInput),
                 ("hi", HardwareInput)]

class Input(ctypes.Structure):
    _fields_ = [("type", ctypes.c_ulong),
                ("ii", Input_I)]

def PressKey(hexKeyCode):
    extra = ctypes.c_ulong(0)
    ii_ = Input_I()
    ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008, 0, ctypes.pointer(extra) )
    x = Input( ctypes.c_ulong(1), ii_ )
    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))

def ReleaseKey(hexKeyCode):
    extra = ctypes.c_ulong(0)
    ii_ = Input_I()
    ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008 | 0x0002, 0, ctypes.pointer(extra) )
    x = Input( ctypes.c_ulong(1), ii_ )
    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))

#EVENTS I AM HAVING ISSUES WITH#######################################

@client.event
async def on_message(message):
    if message.content.startswith('w'):
        KeyPress()
    await client.process_commands(message)

@client.event
async def on_message(message):
    if message.content.startswith('a'):
        SKey()
    await client.process_commands(message)

@client.event
async def on_message(message):
    if message.content.startswith('d'):
        DKey()
    await client.process_commands(message)

#########################################################

def KeyPress():
    time.sleep(0.1)
    PressKey(0x11) 
    time.sleep(.05)
    ReleaseKey(0x11) 

def SKey():
    time.sleep(0.1)
    PressKey(0x1e) 
    time.sleep(.05)
    ReleaseKey(0x1e) 

def DKey():
    time.sleep(0.1)
    PressKey(0x20) 
    time.sleep(.05)
    ReleaseKey(0x20) 

client.run('TOKEN')

您只能有一个“on_message”事件,否则,最新的事件会覆盖其他事件。

相反,使用多个 if 语句组合它们。

@client.event
async def on_message(message):
    if message.content.startswith('w'):
        KeyPress()

    if message.content.startswith('a'):
        SKey()

    if message.content.startswith('d'):
        DKey()
    await client.process_commands(message)