$guildVanityURL
$guildVanityURL
will return a guild’s vanity URL.
Usage
$guildVanityURL[guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | number | The guild ID. | false |
Example(s)
This will return the vanity URL of your guild, if you have one:
1client.command({2 name: "guildVanityURL",3 code: `4 $guildVanityURL[$guildID]5 `6});