$thumbnail
$thumbnail
add 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)
This will create an embed with your user avatar in it:
1client.command({2 name: "thumbnail",3 code: `4 $thumbnail[$userAvatar[$authorID]]5 $description[Hello, that's your Avatar!]`6});