Skip to content

$createStageInstance

$createStageInstance will start a stage.

Usage

$createStageInstance[channelID;topic;type?]

Parameters

FieldTypeDescriptionRequired
channelIDnumberThe channel ID of the stage channel.true
topicstringThe stage topic which will be displayed.true
type?numberThe stage type. (listed below)false

Invite Target Types

TYPE VALUE
PUBLIC 1
PRIVATE 2

Example(s)

This will create start a new stage instance:

1
client.command({
2
name: "createStageInstance",
3
code: `
4
$createStageInstance[stageID;Testing!;1]
5
` // replace "stageID" with an actual stage ID
6
});