Skip to content

$isPreviousExists

$isPreviousExists will return either true or false depending on if the previous track is exists.

Usage

$isPreviousExists[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?snowflakeguild IDfalse

Example(s)

This will return either true or false depending on if the previous track is exists

1
client.command({
2
name: "ispreviousexists",
3
code: `
4
$isPreviousExists
5
`
6
});