Hello asking for a friend (Im done making bots)
how to make message highlighted when mentioning user
Here is relevant code
[SlashCommand("ping", "ping Him")]
public async Task Ping(SocketGuildUser user)
{
await Context.Interaction.DeferAsync();
await Context.Interaction.FollowupAsync(user.Mention, allowedMentions: AllowedMentions.All);
}
}```
