Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. message.channel.send({embed: {
  2. color: 3447003,
  3. author: {
  4. name: client.user.username
  5. icon_url: client.user.avatarURL
  6. },
  7. title: "This is an embed",
  8. url: "https://google.com",
  9. description: "This is a test embed to showcase what they look like and and what they can do.",
  10. fields: [{
  11. name: "Fields",
  12. value: "They can have different fields with small headlines.",
  13. },
  14. {
  15. name: "Masked links",
  16. value: "You can put [masked links](https://google.com) inside of rich embeds.",
  17. },
  18. {
  19. name: "Markdown",
  20. value: "You can put all the *usual* **__Markdown__** inside of them.",
  21. },
  22. ],
  23. timestamp: new Date(),
  24. footer: {
  25. icon_url: client.user.avatarURL
  26. text: "© Example",
  27. }
  28. }
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement