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