是对命令使用前缀和 ping 的方法吗?
Is the a way to use prefix AND ping for commands?
我决定创建一个更有用的机器人,我想允许以两种方式激活命令:x.
这是默认前缀和 @xubot
,又名ping 机器人。
我的命令是这样的:
# sidenote: this is not an actual command ;)
pref = 'x.'
client = Bot(command_prefix=pref)
@client.command(name="example",
pass_ctx=True)
async def example(ctx, type=""):
# the "type" parameter is used so i can check if it is "help" and display an embed
await ctx.send("Test!")
但是,我只能激活前缀为 x.
的命令
我想要 @xubot example
到 运行 命令,以及 x.example
。有办法实现吗?
将 commands.when_mentioned_or
函数作为前缀传递:
from discord.ext.commands import Bot, when_mentioned_or
bot = Bot(command_prefix=when_mentioned_or("x."))
...
我决定创建一个更有用的机器人,我想允许以两种方式激活命令:x.
这是默认前缀和 @xubot
,又名ping 机器人。
我的命令是这样的:
# sidenote: this is not an actual command ;)
pref = 'x.'
client = Bot(command_prefix=pref)
@client.command(name="example",
pass_ctx=True)
async def example(ctx, type=""):
# the "type" parameter is used so i can check if it is "help" and display an embed
await ctx.send("Test!")
但是,我只能激活前缀为 x.
我想要 @xubot example
到 运行 命令,以及 x.example
。有办法实现吗?
将 commands.when_mentioned_or
函数作为前缀传递:
from discord.ext.commands import Bot, when_mentioned_or
bot = Bot(command_prefix=when_mentioned_or("x."))
...