这是我的代码,我想通过discord.py创建一条命令,该命令以“ say [message] ”写一条消息,并以“ say [频道] [消息] ”。在大多数情况下,我都知道了。我的问题是我想检查命令“ say”之后的第一个参数是否是频道提及。
client = commands.Bot(command_prefix="_")
@client.command(aliases=['echo', 'print'], description="say <message>")
async def say(ctx, channel, *, message=""):
await ctx.message.delete()
if not channel:
await ctx.send("What do you want me to say?")
else:
if channel == discord.TextChannel.mention:
await ctx.send("test")
else:
await ctx.send(str(channel) + " " + message)
我已经尝试使用discord.textchannel,discord.message.channel_mentions和其他一些方法,但是我无法弄清楚。
答案 0 :(得分:0)
我们可以使用一些精美的converter 功能来使命令解析机制为我们完成此操作:
from typing import Optional
from discord import TextChannel
@client.command(aliases=['echo', 'print'], description="say <message>")
async def say(ctx, channel: Optional[TextChannel], *, message=""):
channel = channel or ctx # default to ctx if we couldn't detect a channel
await channel.send(message)
await ctx.message.delete()