respondMessage

suspend fun ChatCommandSource.respondMessage(content: String): Message

Builds a message spec with only content and sends it in the channel the command was invoked in.


suspend fun ChatCommandSource.respondMessage(builder: MessageBuilder.() -> Unit): Message

Builds a MessageCreateSpec and sends it in the channel that the command was invoked in.


suspend fun ChatCommandSource.respondMessage(template: MessageCreateSpec): Message

Sends a message based on the MessageCreateSpec in the channel that the command was invoked in.


suspend fun ChatCommandSource.respondMessage(vararg specs: EmbedCreateSpec): Message

Sends an embed based on the EmbedCreateSpec in the channel that the command was invoked in.