2017-07-09 41 views

回答

0

使用Discord.Net 1.0它是非常簡單的:

await Context.User.SendMessageAsync("Message"); 

您還可以嵌入這樣的消息:

var EB = new EmbedBuilder(); 
EB.WithTitle("Secret Commands"); 
EB.WithDescription("!command \n" + "!anothercommand"); 

await Context.User.SendMessageAsync("", false, EB);