diff --git a/src/commands/Community/lista_membros.js b/src/commands/Community/lista_membros.js index af983b9..75bd52e 100644 --- a/src/commands/Community/lista_membros.js +++ b/src/commands/Community/lista_membros.js @@ -73,7 +73,17 @@ try { } +const embed = new EmbedBuilder() + .setAuthor({ + name: "Info", + url: "https://example.com", + }) + .setTitle("Example Title") + .setURL("https://example.com") + .setDescription("This is an example description. Markdown works too!\n\nhttps://automatic.links\n> Block Quotes\n```\nCode Blocks\n```\n*Emphasis* or _emphasis_\n`Inline code` or ``inline code``\n[Links](https://example.com)\n<@123>, <@!123>, <#123>, <@&123>, @here, @everyone mentions\n||Spoilers||\n~~Strikethrough~~\n**Strong**\n__Underline__\n\n<@1356975383811068031> » Meta: Carvão: `1,231` Carvão: `123,231`\n<@428524753213456385> » Meta: Carvão: `1,231` Carvão: `123,231`") + .setColor("#00b0f4"); +await message.editReply({ embeds: [embed] });