2
0

📝 (settings) Update wait between messages instruction

This commit is contained in:
Baptiste Arnaud
2024-01-24 12:27:50 +01:00
parent f052b4c805
commit 7e9c67a47c

View File

@ -30,14 +30,7 @@ The goal of a typebot is not to pretend that the bot is a real human. So we sugg
The `Disable on first message` allows you to disable the typing emulation on the first message. This is useful if you want to lower the first message display time since the site can take some time to load first. The `Disable on first message` allows you to disable the typing emulation on the first message. This is useful if you want to lower the first message display time since the site can take some time to load first.
The `Delay between messages` by default is 0 and you can increase it up to 5 seconds if you want to add a delay between **every** messages sent by the typebot. The `Delay between messages` by default is 0 and you can increase it up to 5 seconds if you want to add a delay between **every** messages sent by the typebot. If you ever want to pause the bot just once. You can insert a [Wait block](../editor/blocks/logic/wait) between both messages.
Sometimes you want to pause the bot for a few seconds between one message and another, regardless of the typing speed. You can achieve this by adding a Code block with the following content:
```js
return new Promise((res) => setTimeout(res, 3000))
```
You can tweak `3000` (3s) to your liking.
## Security ## Security