$sendCrosspostingMessage
$sendCrosspostingMessage will crosspost a given message to the given channels.
Usage
$sendCrosspostingMessage[content;...channelIDs]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| content | string | The message to send. | true |
| …channelIDs | number | Where to send the given message. | true |
Example(s)
This will crosspost a message to multiple channels in your server:
1client.command({2 name: "sendCrosspostingMessage",3 code: `4 $sendCrosspostingMessage[Hello!;$channelID;$randomChannelID]5 `6});