$title
$title
adds a title to an embed.
Usage
$title[index?;title;URL?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
index? | number | The index of the embed. | false |
title | string | The content of the embed title. | true |
URL? | string | URL which will be the hyperlink. | false |
Example(s)
This will create an embed with a title:
1client.command({2 name: "title",3 code: `4 $title[Hello!;https://aoi.js.org]5 $description[The title contains a hyperlink..]`6});