Вот код:
Код: Выделить всё
[Command("spawn"), Summary("Spawn a monster")]
public async Task Embed()
{
EmbedBuilder Embed = new EmbedBuilder();
Embed.WithAuthor("Test Title");
Embed.WithDescription("Test Description");
Embed.WithThumbnailUrl($"{Context.Channel.SendFileAsync(@"Core\Data\1.png", "", false, null)}");
Embed.WithColor(0, 255, 0);
await Context.Channel.SendMessageAsync("", false, Embed.Build());
}
Подробнее здесь: https://stackoverflow.com/questions/509 ... ne-message