First, I love your builder. It's by far the best of the available options, imo.
Now, a request: Proboards-format bbcode list support. Here's an example of how it needs to be done, taken from the bbcode of one of my own builds:
Code:
[u]Enhancements[/u] (80 AP)
Thief-Acrobat (39 AP)
[ul][li]Staff Control, Stick Fighting, Tumbler
[ol][li]Acrobat Staff Training, Thief Acrobatics III, Sly Flourish III
[/li][li]Acrobat Staff Training, Quick Strike III
[/li][li]Acrobat Staff Training, Improved Glancing Blows III, Shadow Dodge II
[/li][li]Acrobat Staff Training, No Mercy III
[/li][li]Acrobat Staff Training, Staff Specialization, Spinning Staff Wall
[/li][/ol][/li][/ul]
I can get close in options, by setting bullets to [ul] and numbered to [ol], but this doesn't solve the problem that all list items are still handled with unclosed [*] tags, which probaords won't parse or convert despite them being what was used in older versions of proboards. There's another problem as well: Because of the way proboards handles newlines, if you do something like this:
Code:
[ul]
[li]Item 1[/li]
[li]Item 2[/li]
[/ul]
it will come out looking something like this:
Note all the extra whitespace...that's because for some reason proboards keeps that extra newline when it sees it between 2 list elements like that. This means that just allowing me to specify opening and closing list tags work right unless I have the option to "remove whitespace between list tags". Ideally, I should be allowed to specify opening (and closing) tags for "first list item" and "other list items". This would also indirectly allow the output to be html-formatted instead of bbcode-formatted, if desired, and would allow me to keep the bbcode (or html) neat.
--ArekDorun
P.S. I wish I could help you implement this myself, but I don't have a VB6 compiler available.