Thanks, Colin - you put a lot of work into this.
If you did want to use the table code, it would look like this:
The Killing | 6 | 27 |
Slavers of Drule | 3 | 8 |
Stone Killers | 3 | -7 |
Galaxy Killers | 0 | -28 |
It's far from perfect - tables in bbcode without access to css (web style code) generally look a bit pants, and I had to type some spaces in by hand to get it to look less cramped.
Replacing all the square brackets in my code with curly brackets, it looks like this (and you can see where I've typed spaces - 3 each - after each story title and after the first number in each row):
{table}
{tr}{td}The Killing {/td} {td}6 {/td} {td}27{/td}{/tr}
{tr}{td}Slavers of Drule {/td} {td}3 {/td} {td}8{/td}{/tr}
{tr}{td}Stone Killers {/td} {td}3 {/td} {td}-7{/td}{/tr}
{tr}{td}Galaxy Killers {/td} {td}0 {/td} {td}-28{/td}{/tr}
{/table}
Basically, {tr}...{/tr} encompasses an entire row of information and {td}...{/td} is a single cell inside a row. Each row needs the same number of cells, so that your columns line up. (If you do anything wrong, then when you press "Post" it pretty much poops itself and deletes almost everything.)