$lyrics
$lyrics will search a track lyrics.
Usage
$lyrics[title;property?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| title | string | song title | true |
| property? | string | search property you want to retrieve | false |
Property
| Field | Returns | Description |
|---|---|---|
| title | string | Song title |
| lyrics | string | Song lyrics |
| artist | string | Song author |
| artistUrl | string | Author URL |
| thumbnail | string | Song thumbnail |
| id | string | Song identifier |
| duration | string | Song duration |
| durationMs | number | Song duration in milliseconds |
| url | string | Song URL |
Example(s)
will search a track lyrics
1client.command({2 name: 'lyrics',3 code: `4 $lyrics[Reckless]5 `6});This will search a track lyrics
1module.exports = [{2 name: "lyrics",3 code: `4 $lyrics[Reckless]5 `6}]