$createStageInstance
$createStageInstance
will start a stage.
Usage
$createStageInstance[channelID;topic;type?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
channelID | number | The channel ID of the stage channel. | true |
topic | string | The stage topic which will be displayed. | true |
type? | number | The stage type. (listed below) | false |
Invite Target Types
TYPE | VALUE |
---|---|
STREAM | 1 |
EMBEDDED_APPLICATION | 2 |
Example(s)
This will create start a new stage instance:
1client.command({2 name: "createStageInstance",3 code: `4 $createStageInstance[stageID;Testing!;1]5 ` // replace "stageID" with an actual stage ID6});