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?
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?
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)