I am running a discord bot. But it responds without mentioning.
In discord.py I could do something like this:
@bot.event
async def on_message(message):
if message.content == "hi":
await message.reply("Hello!", mention_author=True)
And it would mention the user and reply to their message. But since discord.py was depricated, I switched to pycord. And I just can't find how I can do the same thing in pycord.
Here is simple echo bot to replicate:
import discord
bot = discord.Bot()
@bot.event
async def on_ready():
print(f"{bot.user} is ready and online!")
@bot.slash_command(name="chat", description="some desc")
async def chat(ctx, msg):
await ctx.respond(msg)
bot.run(TOKEN)
One way to mention the user would be:
It mentions the user from the string returned from
.mention
.Because you're using slash commands (and in the example output, it's a text command), the bot can't mention the user (without using the above method) without a message object.
One way to get that message object would be:
You can reply to this message instead as well.
Documentation