import discord
from discord.ext import commands
client = commands.Bot(command_prefix='sk?')
token = ""
@client.event
async def on_message():
if 'WORD' in message.content:
await member.ban(reason = WORD)
client.run(token)
我收到错误“需要 0 个位置参数,但给出了 1 个”,我不知道我的代码有什么问题。
我尝试在 on_message(member):
上方添加 member = message.author()
和 if 'WORD' in message.content:
我不知道该做什么或我做错了什么。
它还表示对于所有非常烦人的消息。
答案 0 :(得分:0)
on_message
接受消息参数,member
也应该是 message.author
@client.event
async def on_message(message):
if "WORD" in message.content:
await message.author.ban(reason="WORD")
# Remember to add `process_commands`
await client.process_commands(message)
您还应该在事件末尾添加 process_commands
以便命令起作用