Reputation: 23
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?
Upvotes: 0
Views: 471
Reputation: 81
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)
Upvotes: 1