-
{channelId}: Returns the ID of the current channel
- Argumente:
- Beispielergebnis:
1
-
{channelName}: Returns the name of the given channel
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
test
-
{channelType}: Displays the internal channel type ID
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelTypeText}: Displays the human-friendly version of the channel type
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
DM
-
{channelCreated}: Returns the timestamp when a channel was created
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelTopic}: Returns the channel topic
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
test
-
{channelPosition}: Returns the relative channel position
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelParentId}: Returns the ID of the parent channel (category or channel for threads)
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelCategoryId}: Returns the ID of the parent category, regardless of the current channel being a thread or not
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelParentName}: Returns the name of the parent channel
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
test
-
{channelSlowmode}: Returns the slowmode in seconds of the given channel
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelBitrate}: Returns the bitrate of the given channel
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelUserLimit}: Returns the user limit of the given channel
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{channelNSFW}: Checks if the given channel is marked as NSFW (Not Safe For Work, 18+ channel) or not
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
false
-
{channelThread}: Returns whether the given channel is a public or private thread or not
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
true
-
{channelThreadCount}: Returns the amount of active threads in the given channel
- Argumente:
- channel = message.channel.id
- Beispielergebnis:
1
-
{createThread}: Creates a thread in the given channel. Returns its ID.
- Argumente:
- name = "TomatenKuchen Thread"
- parentId = message.channel.id
- isPrivate = "false"
- Beispielergebnis:
1
- Mit Eingabe:
{createThread}
-
{createPost}: Creates a post in the given forum or media channel. Returns its ID.
- Argumente:
- msgContent = "Hello world from a post!"
- name = "TomatenKuchen Post"
- parentId = message.channel.id
- postTags = ""
- Beispielergebnis:
1
- Mit Eingabe:
{createPost}
-
{setPostTags}: Sets the given tags on a forum post
- Argumente:
- tags = ""
- post = message.channel.id
- Beispielergebnis: <leer>
-
{addPostTags}: Adds the given tags to a forum post
- Argumente:
- tags = ""
- post = message.channel.id
- Beispielergebnis: <leer>
-
{removePostTags}: Removes the given tags from a forum post
- Argumente:
- tags = ""
- post = message.channel.id
- Beispielergebnis: <leer>