$thumbnail
$thumbnail
adds a thumbnail to an embed (upper right corner image).
Usage
$thumbnail[index?;URL]
Parameters
Field | Type | Description | Required |
---|---|---|---|
index? | number | Embed position/index. | false |
URL | string | Thumbnail Image URL. | true |
Example(s)
Here’s an example of how to create an embed that includes your avatar:
1client.command({2 name: "thumbnail",3 code: `4 $thumbnail[$userAvatar[$authorID]]5 $description[Hello! This is your avatar.]`6});