Skip to content Skip to sidebar Skip to footer

How To Add Reason In Discord.js Ban And Kick Command With Commando Framework?

I'm currently working on a discord.js bot with commando (which is the official framework/commands handler from the discord.js creator) I have researched this subject on various web

Solution 1:

You'll need to put it in the options argument (see the docs). You should also probably use member.ban instead of guild.members.ban(member), but anyways, here's an example:

member.ban({
    reason: "Your reason here"
});

And the member will be banned, with the reasoning in audit logs showing up properly. You should add an reason argument to your command as well. Don't ask me how though, I haven't touched discord.js in a year and especially not commando. Check the guide for that. Make the mention the first argument and the reason the rest.

Post a Comment for "How To Add Reason In Discord.js Ban And Kick Command With Commando Framework?"