Skip to content

$isSeekable

$isSeekable will return either true or false depending on if the track is seekable.

Usage

$isSeekable[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?snowflakeguild IDfalse

Example(s)

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

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