Skip to content

$title

$title add a title to an embed.

Usage

$title[index?;title;URL?]

Parameters

FieldTypeDescriptionRequired
index?numberThe index of the embed.false
titlestringThe content of the embed title.true
URL?stringURL which will be the hyperlink.false

Example(s)

This will create an embed with a title:

1
client.command({
2
name: "title",
3
code: `
4
$title[Hello!;https://aoi.js.org]
5
$description[The title contains a hyperlink..]`
6
});