public async Task RunBot()
{
Bot.SlashCommandExecuted += EmbedBoost;
}
private async Task EmbedBoost(SocketSlashCommand command)
{
.WithAuthor("@Bandibot", iconUrl: "https://cdn-5f7ee414c1ac190fbc579dd9.closte.com/wp-content/uploads/2021/05/wow-tbc-dungeons-boost-min-265x265_c.png")
.WithThumbnailUrl("https://cdn-5f7ee414c1ac190fbc579dd9.closte.com/wp-content/uploads/2021/05/wow-tbc-dungeons-boost-min-265x265_c.png")
.WithTitle(keyname + " +" + keylevel.ToString() + " x " + nbrkey.ToString())
.WithColor(Color.Green)
.AddField("ADV Name", value: advname, inline: true)
.AddField("Armor stack", value: armorstack, inline: true)
.AddField("Price", value: price, inline: true)
.WithImageUrl("https://static1.millenium.org/articles/1/13/77/11/@/39555-wow-vignette-bc-tlk-cata-mop-timewalking-article_m-1.jpeg")
.WithTimestamp(DateTime.Now)
.WithFooter(text: "Date event", iconUrl: "https://cdn-5f7ee414c1ac190fbc579dd9.closte.com/wp-content/uploads/2021/05/wow-tbc-dungeons-boost-min-265x265_c.png");
await command.RespondAsync(embed: embedBuiler.Build());
}