$setNowPlaying
$setNowPlaying
will set the message of the currently
playing track to delete once the track ends.
Usage
$setNowPlaying[messageID]
Parameters
Field | Type | Description | Required |
---|---|---|---|
messageID | snowflake | message ID | true |
Example(s)
This set the message of the currently playing track to delete once the track ends
1client.command({2 name: 'setnowplaying',3 code: `4 $setNowPlaying[$get[ID]]5 $let[ID;$sendMessage[test;true]]6 `7});
This will set the message of the currently playing track to delete once the track ends
1module.exports = [{2 name: "setnowplaying",3 code: `4 $setNowPlaying[$get[ID]]5 $let[ID;$sendMessage[test;true]]6 `7}]