alleycat 28 Posted March 5, 2016 I have an array of strings (items) that I would like to print in a coherent text with a linebreak. This is easy to do in diag_log text but not for diary records or dialogs. array = ["item1","item1","item1","item1","item1"]; If I just print it out in any known game format it ends up like that. If I use { diag_log text _x; } forEach array; I get a new line of text for each entry, but only for console log. Is it possible to build a string like this that can be used in parse text? https://community.bistudio.com/wiki/composeTextlooks interesting but I am not sure how to modify the syntax to iterate through a loop. Share this post Link to post Share on other sites
killzone_kid 1331 Posted March 5, 2016 parseText (array joinString "<br/>"); Share this post Link to post Share on other sites
alleycat 28 Posted March 6, 2016 Thanks. A lot. I was trying to figure that out for two weeks. Share this post Link to post Share on other sites