Skip to content

$slowmode

$slowmode will change a channel’s slowmode.

Usage

$slowmode[time;channelID?]

Parameters

FieldTypeDescriptionRequired
timestring, numberThe new slowmode of the given channel.true
channelID?numberThe ID of the channel that will be modified.false

This has a max time of 21600000 seconds (6 hours).

Example(s)

This will change the channel’s slowmode to three minutes:

1
client.command({
2
name: "slowmode",
3
code: `
4
$slowmode[3m;$channelID]`
5
});

This will change the channel’s slowmode to 6 hours:

1
client.command({
2
name: "slowmode",
3
code: `
4
$slowmode[6h;$channelID]`
5
});