$slowmode
$slowmode will change a channel’s slowmode.
Usage
$slowmode[time;channelID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| time | string, number | The new slowmode of the given channel. | true |
| channelID? | number | The ID of the channel that will be modified. | false |
This has a max time of 21600 seconds (6 hours).
Example(s)
This will change the channel’s slowmode to three minutes:
1client.command({2 name: "slowmode",3 code: `4 $slowmode[3m;$channelID]`5});This will change the channel’s slowmode to 6 hours:
1client.command({2 name: "slowmode",3 code: `4 $slowmode[6h;$channelID]`5});