$createChannel

Creates a new channel.

Syntax

$createChannel[Name;Type;(Category ID)]

Limit

Discord allows users to create up to 500 channels per server. This includes all channel types.

Parameters

  • Name (Type: String || Flag: Required): The name of the new channel.

Limit

Channel names can have a maximum of 100 characters.

  • Type (Type: Enum || Flag: Required): The channel type. Channel types:
    • category
    • text
    • voice
    • stage
    • forum
  • Category ID (Type: Snowflake || Flag: Optional): The category to put the channel in (if applicable).

How to get the Category ID guide.

Example

$nomention
$createChannel[cool-channel;text]
New channel created!
!example New channel created!

example

Tip

You can use $channelID[] to return the channel ID.

$nomention
$createChannel[main-chat;text]
New channel created! ID: $channelID[main-chat]
!example New channel created! ID: 566370477967147018

How $channelID[] works?