discord bot, how to Command response time extension

Viewed 24

I made a timer code. But the slash command is valid until 15 minutes The timer only operates for up to 15 minutes. What are some ways to stay longer?

1 Answers

There is no posibility to response slash command after 15 minutes. What you can do is

interaction.reply({content:'Example'})
setTimeout(()=>{
interaction.channel.send(MessageYouWantToSend)
},time)
Related