$editMessage
Edits a message previously sent by the bot. This function allows you to modify the content of a message.
$editMessage[messageId;newMessage;channelId (optional)]
Usage: messageId
: The ID of the message you want to edit.newMessage
: The new content of the message.channelId
(optional): The ID of the channel where the message is located. If omitted, the function assumes the message is in the same channel where the command is executed.
Example
$editMessage[123456789012345678;This is the updated message content!]
In this example, the message with the ID 123456789012345678
will be edited to display "This is the updated message content!".
Used Functions
$messageID
- Use the $messageID
function to retrieve the ID of the message that triggered the command. This is useful if you want to edit the same message that invoked the command.
Note
You can format your newMessage
as an embed using the Message Curl Format. This allows you to create rich, visually appealing messages.
Related Functions
$deleteMessage
- The$deleteMessage
function deletes a message from the server or in DMs.