I just began with commands.bot
but got some experience in it.
So what I want to do is to say; If the message content only starts with the command, then do this and this.
Example thought:
@bot.command(name="verify", aliases="v", startswith=True)
async def verify(ctx):
await ...
EDIT: I know how .startswith()
works, my question is especially about commands.bot
because (I think) the commands are only getting called when the whole message is only the command and my question is if there is a possibility to say that it only takes the start of the message or checks if it's in the message or something like this