Skip to content

$deleteStageInstance

$deleteStageInstance will end an existing stage instance.

Usage

$deleteStageInstance[channelID]

Parameters

FieldTypeDescriptionRequired
channelIDnumberThe stage channel ID of the current stage instance.true

Example(s)

This will end the current stage instance: ( make sure to replace stageID with an actual stage ID )

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