Making a bot delete its own message after a timeout

时光总嘲笑我的痴心妄想 提交于 2021-01-28 08:23:21

问题


I am looking to have my bot send a message, confirming that it executed the command, and then delete that confirmation message after a timeout; so as not to clutter the chat.

Here is a code sample of my current command I would like to have it applied to:

exports.auth = 1
exports.run = (client, message, args) => {
  let num = parseInt(args);
  message.channel.bulkDelete(num+1)
    .then(messages => console.log(`Bulk deleted ${num} messages`))
    .catch(console.error);
  message.channel.send(`Deleted ${num} messages!`);
  message.delete(5000);
};

If I have no time set in the Message.delete(); line, it just deletes the message I sent. If the time is long enough for the bot to send a message, it just gives me an error.


回答1:


You need to get the message that you sent to delete it.

message.channel.send(`Deleted ${num} messages!`).then(sentMessage => {
    sentMessage.delete(5000);
});

This is gonna send the message and after the message was sent it will return it so you can manage it (delete/edit).



来源:https://stackoverflow.com/questions/51452235/making-a-bot-delete-its-own-message-after-a-timeout

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!