$authorAvatar

This function returns the URL of the avatar for the user who triggered the command.

Important Considerations

Discord automatically embeds images when a link to an image is included in a message. See the examples below to understand the different ways Discord handles image links.

  • If a message contains only a link to an image, Discord sends only the image embed.
  • If a message contains a link to an image and additional text, Discord sends both the link and the image embed.

To send the image as an attachment without displaying the link, use the $attachment function.

To display the avatar URL as plain text (without embedding the image), enclose the function in backticks: `$authorAvatar`.

Usage

$authorAvatar[Return Server Avatar Instead (yes/no, default is no)]

Arguments

  • Return Server Avatar Instead (yes/no, default is no): An optional argument. If set to yes, the function will return the user's server avatar (if they have one) instead of their global avatar. Defaults to no.

Examples

Sending the Avatar URL with Text

This example demonstrates how the avatar URL is displayed when sent with accompanying text.

crochet04/04/2025
!!exec My avatar link: $authorAvatar
Image attached below:

Sending Only the Avatar URL

This example demonstrates how the avatar is embedded when only the avatar URL is sent in the message.

Example
crochet04/04/2025
!!exec $authorAvatar
Custom Command Bot 04/04/2025
1

This example demonstrates how to send the avatar as an attachment without including the direct link in the message. This is achieved using the $attachment function.

Example
crochet04/04/2025
!!exec No link, only text and image
$attachment[$authorAvatar]
Custom Command Bot 04/04/2025
No link, only text and image
1

Sending the Avatar URL as Plain Text

This example demonstrates how to display the avatar URL as plain text instead of embedding the image. This is done by wrapping the function call in backticks.

Example
crochet04/04/2025
!!exec $authorAvatar
Custom Command Bot 04/04/2025
https://cdn.discordapp.com/avatars/808007806266769458/768de61c5d90024e100ec5c058d3c2fe.webp?size=4096