$getGuildForumTags
$getGuildForumTags will return the forum’s tags.
Usage
$getGuildForumTags[forumId;option?;separator?]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| forumId | number | The ID of the forum channel. | true | 
| option? | string | The option / format to return. | false | 
| separator? | string | The separator to separate the data. | false | 
This function also supports custom formatting!
Example(s)
This will return the forum tag names:
1client.command({2    name: "getGuildForumTags",3    code: `4  $getGuildForumTags[forumId;name;, ]5  `6});This will return the emojis of the tags and ids:
1client.command({2    name: "getGuildForumTags",3    code: `4  $getGuildForumTags[forumId;Name: {name} -> Emoji: {emoji} {emojiId}]5  `6});