Skip to content

$guildFeatures

$guildFeatures will return unlocked guild features.

Usage

$guildFeatures[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

This will return the unlocked guild features of a guild:

1
client.command({
2
name: "guildFeatures",
3
code: `
4
$guildFeatures[$guildID;true]
5
`
6
});