Skip to content

$isCurrentExists

$isCurrentExists will return either true or false depending on if the current track is exists.

Usage

$isCurrentExists[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?snowflakeguild IDfalse

Example(s)

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

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