https://discord.gg/botpress logo
Add a delay between messages
# 📖tutorials
l
Adding a delay between messages has been requested several times, so I figured I would create a little tutorial. If you have to send several text cards and do not want them to send at the exact same time, you can add the following in an `execute code card `between text cards.
await new Promise(resolve => setTimeout(resolve, 5000));
> (1000 = 1 second, 10000 = 10 seconds etc) (avoid going over 30 seconds to avoid crashing) Shoutout to @wide-umbrella-5226 for this solution. https://cdn.discordapp.com/attachments/1466462267548897444/1466462268521840752/image.png?ex=697cd4ea&is=697b836a&hm=bafbc668aaf97c174f617e2153a9aae032655ab87bb7368295b500e636c44962& https://cdn.discordapp.com/attachments/1466462267548897444/1466462269008511108/image.png?ex=697cd4ea&is=697b836a&hm=402a85e4265feeb51dafd074e36563f037d5016c8cfb6d6e6f7513da9682a1f7&
6 Views