Skip to content

$sendCrosspostingMessage

$sendCrosspostingMessage will crosspost a given message to the given channels.

Usage

$sendCrosspostingMessage[content;...channelIDs]

Parameters

FieldTypeDescriptionRequired
contentstringThe message to send.true
…channelIDsnumberWhere to send the given message.true

Example(s)

This will crosspost a message to multiple channels in your server:

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