$guildContentFilter
$guildContentFilter
will return the guild’s content filter level.
Usage
$guildContentFilter[guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | number | The ID of the guild. | true |
Type | |
---|---|
0 | Disabled |
1 | Medium |
2 | High |
Example(s)
This will return the content filter level of a specific guild:
1client.command({2 name: "guildContentFilter",3 code: `4 $guildContentFilter[$guildID]5 `6});