This action allows you to add text to the end of the current binary data.

It takes one parameter: the string to add.

The text sent will be ANSI only in Lacewing Relay, so non-ANSI characters may be corrupted. More details on that here.


Lacewing does not have a built-in way of knowing how many bytes the text is (on the receiving end) without a null terminator. You should add the length as a variable before the string, or subtract from the message size to calculate the length from the remainder on the receiving end.


If you want to calculate the number of bytes used for Blue, use the Convert string to UTF-8 and count bytes expression. Alternatively, read the Binary to send size expression before and after you add the string, and subtract for the number of bytes.