Bot 前缀中的空格

时间:2021-01-28 16:37:55

标签: python discord bots discord.py

是否可以在服务器的前缀中留出一个空格,因为我希望用户可以对我的机器人进行 ping 作为前缀 前缀应该是: <@bot.id> <-(ping 后有空格) 我怎样才能做到这一点 我的代码是:

def get_prefix(client, message):
try:
    with open('./rsc/databases/prefixes.json', 'r') as f:
        prefixes = json.load(f)

    if str(message.guild.id) in prefixes:
        prefix = prefixes[str(message.guild.id)]
        return [str(prefix), '<@!801443216595353642>', "<@!801443216595353642> "]
    else:
        return ["!", '<@!801443216595353642>', "<@!801443216595353642> "]
except:
    return ["!", '<@!801443216595353642>', "<@!801443216595353642> "]

如果我不在服务器名称后留一个空格,它可以工作,但没有空格:/

因为如果你使用 TAB 来完成 ping,它会自动设置空格 :/ 所以机器人不会得到命令......

2 个答案:

答案 0 :(得分:1)

使用 commands 扩展名,前缀中不能有空格,因为不会检测到您的命令。您必须使用 on_message 事件手动创建命令:

@client.event
async def on_message(message):
    prefix = get_prefix(client, message)
    if message.content.startswith(prefix):
        #Your code

答案 1 :(得分:1)

您可以检查 on_message 事件中的每条消息,并在处理命令之前将机器人提及更改为命令前缀。这是通过检查 message.content 的开头来完成的,如果它与 '<@!botid> ' 匹配,则将其替换为 bot 前缀。

from discord.ext import commands

bot_prefix = '!'

bot=commands.Bot(command_prefix=bot_prefix)

@bot.command()
async def ping(ctx):
    await ctx.send('Pong')

@bot.event
async def on_message(message):
    bot_mention_str = bot.user.mention.replace('@', '@!') + ' '
    bot_mention_len = len(bot_mention_str)

    if message.content[:bot_mention_len] == bot_mention_str:
        message.content = bot_prefix + message.content[bot_mention_len:]
        await bot.process_commands(message)
    else:
        await bot.process_commands(message)

bot.run('token')