Answers for "discord bot c# reply to command in dms"

C#
0

discord bot c# reply to command in dms

// Send message in dms
if (ctx.Channel.IsPrivate) { // Command from Guild/Server
	await ctx.Channel.SendMessageAsync("Test").ConfigureAwait(false);
} else { // Command from DM
	await ctx.Member.SendMessageAsync("Test").ConfigureAwait(false);
}
Posted by: Guest on September-24-2021

Code answers related to "discord bot c# reply to command in dms"

C# Answers by Framework

Browse Popular Code Answers by Language