$sentMessageID
Get the ID of the last sent message.
This function allows you to retrieve the message ID of the most recently sent message within your code. This is particularly useful for subsequent actions you want to perform on that specific message, such as editing or deleting it.
Usage
Simply use $sentMessageID in your commands to reference the last message's ID.
$sentMessageID
Example: Deleting a Sent Message After 3 Seconds
This example demonstrates how to send a message, wait for 3 seconds, and then delete the message using its ID obtained with $sentMessageID.
$sendMessage[Hello World]
$wait[3s]
$deleteMessage[$sentMessageID]
Explanation:
$sendMessage[Hello World]: Sends the message "Hello World" to the current channel.$wait[3s]: Pauses the script execution for 3 seconds.$deleteMessage[$sentMessageID]: Deletes the message whose ID is stored in the$sentMessageIDfunction. Since the$sendMessagecommand was executed immediately before,$sentMessageIDcontains the ID of the "Hello World" message.