Skip to content

$sendTTS

$sendTTS will send a text-to-speech message in a given channel.

Usage

$sendTTS[channelID;message;returnID?]

Parameters

FieldTypeDescriptionRequired
channelIDnumberThe ID of the channel where the Text-To-Speech message will be sent.true
messagestringThe content of the TTS message.true
returnID?booleanReturn message ID?
1. true
2. false (default)
false

Example(s)

This will send a TTS message in the current channel:

1
client.command({
2
name: "sendTTS",
3
code: `
4
$sendTTS[$channelID;Hello!;false]
5
`
6
});