$userAvatar
Retrieves a user's avatar URL based on their user ID.
$userAvatar[userID;size;dynamic;serverAvatar]
Usage: Parameters:
userID
: The ID of the user whose avatar you want to retrieve. You can use$userID[Custom Command]
to get the ID of the user who triggered the command.size
: (Optional) The size of the avatar in pixels (e.g.,128
,256
,512
). If omitted, a default size will be used. Larger sizes might not always be available.dynamic
: (Optional) Specifyyes
to retrieve a GIF avatar if the user has one. Specifyno
(or omit the parameter) to always get a static image.serverAvatar
: (Optional) Specifyyes
to retrieve the user's server-specific avatar (if they have one) instead of their global avatar. Defaults tono
.
Example:
!!exec $userAvatar[$userID[Custom Command]]
Explanation: This example retrieves the avatar of the user who executed the command.
Example with size and dynamic GIF:
!!exec $userAvatar[$userID[Custom Command];256;yes]
This will retrieve the user's avatar with a size of 256x256 pixels. If the user has a GIF avatar, it will be retrieved as a GIF; otherwise, a static image will be returned.
Example with server avatar:
!!exec $userAvatar[$userID[Custom Command];;no;yes]
This will retrieve the user's server specific avatar. The size is set to default, dynamic gifs are disabled and the server avatar option is enabled.