$sendTTS
$sendTTS will send a text-to-speech message in a given channel.
Usage
$sendTTS[channelID;message;returnID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| channelID | number | The ID of the channel where the Text-To-Speech message will be sent. | true |
| message | string | The content of the TTS message. | true |
| returnID? | boolean | Return message ID? 1. true 2. false (default) | false |
Example(s)
This will send a TTS message in the current channel:
1client.command({2 name: "sendTTS",3 code: `4 $sendTTS[$channelID;Hello!;false]5 `6});