Skip to content

$getGuildForumTags

$getGuildForumTags will return the forum’s tags.

Usage

$getGuildForumTags[forumId;option?;separator?]

Parameters

FieldTypeDescriptionRequired
forumIdnumberThe ID of the forum channel.true
option?stringThe option / format to return.false
separator?stringThe separator to separate the data.false

This function also supports custom formatting!

Example(s)

This will return the forum tag names:

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

This will return the emojis of the tags and ids:

1
client.command({
2
name: "getGuildForumTags",
3
code: `
4
$getGuildForumTags[forumId;Name: {name} -> Emoji: {emoji} {emojiId}]
5
`
6
});