How do I add cr/lf to a string? Does NWScript support escape codes or is there another method maybe using the hex equivalents of the ASCII codes for [carriage return] and [line feed]? Otherwise when I use SetDescription() everything is just going to be bunched up. Tried the lexicon (both on and off line) and it is no help for this.
I am trying to manipulate journal entries through scripts and custom tokens. I would like to place a couple of line breaks between entries, so I am putting two consecutive \n\n at the start of each string. For example: “\n\n This is my second entry”. But the \n\n prints in front of the text instead of converting to new lines. So I get something like
This is my first entry.\n\n This is my second entry.