Skip to content

$isStreaming

$isStreaming will check if one user is streaming in a voice channel.

Usage

$isStreaming[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userID?numberID of the user you want to check if they’re streaming.false
guildID?numberID of the channel where they’re streaming in.false

Example(s)

This will return either true or false depending on if you’re streaming (voice channel) or not:

1
client.command({
2
name: "isStreaming",
3
code: `
4
$isStreaming[$authorID;$guildID]
5
`
6
});