I'm about to pull my hair out over this one. What is the syntax in the GUMP dialogue portion to making a line break? All my dialogue looks like one long run on sentence (at least is has punctuation. LOL) and I'm trying to find a way to break it up into more like paragraphs.
 
NVM. I had tried <br> earlier, but that didn't work. Or I thought it didn't. The line break just happened to fall right on the right place when I was doing my testing to make it look like it wasn't working. :D When I added a few more words, I could then see where it was working right.
 
The line terminator \n can also be used in place of <br>
That seems to be hit or miss. Xmlspawner was supposed to support HTML 1.0, but not "everything" works as it should. Basically \n and \t will likely be your best friends when it comes to formatting text (\n as Vors said is the line terminator, \t is supposed to be tab).
 
Back