Skip to content

$isStream

$isStream will return either true or false depending on if the track is streaming.

Usage

$isStream[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?snowflakeguild IDfalse

Example(s)

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

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