Skip to content

$thumbnail

$thumbnail add a thumbnail to an embed (upper right corner image).

Usage

$thumbnail[index?;URL]

Parameters

FieldTypeDescriptionRequired
index?numberEmbed position/index.false
URLstringThumbnail Image URL.true

Example(s)

This will create an embed with your user avatar in it:

1
client.command({
2
name: "thumbnail",
3
code: `
4
$thumbnail[$userAvatar[$authorID]]
5
$description[Hello, that's your Avatar!]`
6
});