Skip to content

$volume

$volume will set or return the current volume.

Usage

$volume[value?]

Parameters

FieldTypeDescriptionRequired
value?numberNew volume, can’t be higher than 200 and can’t be lower then 0false

Example(s)

This will set or return the current volume

1
client.command({
2
name: "volume",
3
code: `
4
$volume // return 80
5
6
$volume[80]
7
`
8
});