Wait time in between messages
# 🤝help
l
Hello just wondering if anyone knows how to add a wait time between the bot sending the premade messages. For example I have a text card that says "I am now gonna ask a few questions". Then I want it to wait 3 seconds and send the first question. If its not available even with custom code, could be a good feature to add.
c
How do u mean bro ?
d
use settimeout inside custom code, it works. i use it already
l
Whats the code for it?
@damp-forest-63651 So when I have regular text card and it says something there's wait time before it sends the next message.
d
it is in the execute code card: with a code like this one: console.log('**********LE DELAI*************') const timeout = luxon.Duration.fromObject({ seconds: 20 }) await new Promise(resolve => setTimeout(resolve, timeout.as("milliseconds")))
l
ok thanks
d
you're welcome.
15 Views