Hey _sasuke16,
Yes. You can use the .nothing
command to create longer delays. Each time you use .nothing
, spammer applies the delay again, but otherwise does nothing as the name implies.
Some examples (all with "Delay between messages" set to 100ms):
First message.
Second message after 100ms.
.nothing
Third message after 200ms.
First message.
Second message after 100ms.
.nothing
.nothing
.nothing
.nothing
.nothing
.nothing
.nothing
.nothing
.nothing
Third message after 1000ms.
You can combine the .nothing
command with the <repeat>
tag to make long delays look a bit better in your script:
First message.
Second message after 100ms.
<repeat 9>.nothing
</repeat>Third message after 1000ms.
Just be careful not to create any empty lines when doing this, as they will be sent as empty chat messages:
First message.
Second message after 100ms.
<repeat 9>.nothing
</repeat><!-- Watch out: the line break here creates an empty chat message -->
Third message after 1000ms.
Hope this helps!