How To Use Bullentin Board Coding (BBC)This is a compilation of the coding tips made in the
Making your first posts, some guidelines thread, where
Goldfish (and others [who will be mentioned when I get to their bits]) made tutorials for them.
BasicsThe most basic 'tags' of BBC are
Bold,
Underline,
Italics and
Strikethrough. To give text either of these simple put either a b (
Bold), u (
Underline), i (
Italics) or s (
Strikethrough) in square brackets ([]) at the beginning of the text you want to alter, and the same but with a / before the letter (so [/]).
It should look something like this:
[b]Bold[/b], [u]Underline[/u], [i]Italics[/i] and [s]Strikethrough[/s]
You can use more than one BBC at once e.g.
Messy, which looks like:
[b][i][u][s]Messy[/s][/u][/i][/b]
It's usually best to close them in the opposite order that you opened them as I have done above.
ShortcutsThe shortcuts to the above are the buttons above the posting box when you click on

. They look like this:




When you click them the open and close tag will be inserted wherever you were writing before you pressed it. Meanign you must then go between the brackets and write the text.
Alternatively you can simply highlight the text you want the BBC to effect and it will open and close it for you (keeping it [and the new code] highlighted, allowing you to easily apply multiple codes quickly).
More BBCOther slightly more complex, yet still simple examples of BBC are
Glow (

) and
Shadow (

, it's usually best to use the buttons for these and experiment with the numbers, colours etc.
Text Formatiing BBCsReturning once more to the less complex ones are the alignment BBCs:
Align Left
Centered*
Align Right
To use these simply put either left, center or right in the square brackets (remembing the / when closing it) around the text you want to align. It should look something like the below:
[left]Align Left[/left]
[center]Centered*[/center]
[right]Align Right[/right]
Or you could use the buttons (Left:

, Center:

and Right:

align)
* Note that center
must be spelt the American way for this to work.
The other text changing button, Preformatted (

) is for when texts you have (usually) copy and pasted from another source has indents etc. already built into it.
Fonts, Size and ColourAgain, these are slightly more complex than
Bold etc., requiring you to (most of the time) to alter it even if you press the button.
For size you either type out size=
Insert Number Herept inside the opening bracket, and /size in the closing bracket or push the

button and alter as neccassry.
For font you either type out font=
insert Font Here in the opening bracket and /font in the closing bracket or push the
 in the opening bracket and /color in the closing bracket or use the pull down menu on the right of the [img]https://www.40konline.com/Themes/default/images/bbc/face.gif)
button.
Unfortunately I am not aware how to use the Flash (

) BBC nor the FTP Link (

) BBS, so you'll either have to find out from another source or hope someone posts how to.
Images, Links and EmailsTo post direct images (like the one in my signature) you simply put an img in the square brackets and inbetween that put the direct link to where the image is stored on the web (there is no way to post images direct from your computer).
E.g.

Looks like:
[IMG]http://i7.photobucket.com/albums/y269/jaik/UDNoise7copy.jpg[/IMG]
You can also alter the size of the image by adding in height=
Insert Number Here width=
Insert Number Here to the opening tab.
For example:

Looks like:
[IMG height=100 width=100]http://i7.photobucket.com/albums/y269/jaik/UDNoise7copy.jpg[/IMG]
Emails are simple enough, just put email tabs around the email address or use the

button.
URL Links are the same, but with url and the web address between them (or using the

button), however, like images, there is a more advanced way of using them too.
If you want to have a certain word as the link, rather than the gibberish of the weblink itself them simply and an = to the url and put in the web link, closing the brackets behind, and putting the text next, then closing.
For example:
[url=http://www.40konline.com/index.php]40konline[/url]
Would look like:
40konline TablesThis is undoubtedly the hardest of the BBC, as such I'm ggoiong quote the person who I learnt it from, but be prepared to have to get used to it and to fail a few times first.
Originally Written By: Farseer UlthrionTables: basicsFirst, you'll need to understand how a table is built. For each table, you'll need the beginning and ending YABBC-tag. You can use

for this. It will print the following:
[table][/table]
The first tag (i.e. a tag is a part between '[' and ']', such as [/b]) is the start of the table, and the second tag is the end of the table. Everything that you want to put in the table should be between these two tags.
With the table tags alone, you don't have a complete table yet. You'll need to decide how many rows and how many columns you want.
I'll try to explain it using an example. Let's say that you want to make a table with a short description for each eldar aspect warrior. Knowing that there are 8 aspect warriors, you'll need 8 table rows. this means that we'll have to add 8 rows to the table.
Using the

button, you'll print the following code:
[tr][/tr]
This alone doesn't mean anything, so you'll have to place them between the table tags, like this:
[table][tr][/tr][/table]
Finally, this is only one table row, and we needed 8 of them. The tags for the various table rows are placed next to eachother, like this:
[table][tr][/tr][tr][/tr][tr][/tr][tr][/tr][tr][/tr][tr][/tr][tr][/tr][tr][/tr][/table]
As you see, this is very chaotic, so it's best to add a good layout, something like this:
[table]
[tr][/tr]
[tr][/tr]
[tr][/tr]
[tr][/tr]
[tr][/tr]
[tr][/tr]
[tr][/tr]
[tr][/tr]
[/table]
Now we have a table, and we have 8 rows in it. However, we still need to add columns. Each row must have the same number of columns, and in our example, we'll need 2 of them (one for the name of the aspect, and one for the description). The

button is for making columns. It prints:
[td][/td]
Ín our example, we'll need 2 columns, so we use:
[td][/td][td][/td]
However, we still need to place this in our original table. This piece of code needs to be placed between
each of the table row tags, like this:
[table]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[tr][td][/td][td][/td][/tr]
[/table]
Again, a better layout would be required if the table gets too chaotic:
EDIT: Don't put enters between the tr-tags, as this will change the layout of the table in strange ways.
[table]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[/table]
The actual text you want to have in the table should be written between the table data tags (i.e. [.td] and [./td]). Each space in table is called a cell, or table cell.
You should read the table data tags from left to right, top to bottom. This means that the first td-tag you see is for the top-left cell. The next td-tag will be of the cell just to the right of the previous one. If you see a tr-tag, then it's like pressing 'enter' on your keyboard. The next cell will be one line (or row in the case of tables) below the previous one, and it starts agains at the left.
Now, an example can say more than 20 lines of text, so we'll continue to fill our table with the aspect warriors, and their descriptions.
The first aspect warrior will be the warp spider. The description will be that it's a warp-travelling, heavily armoured aspect skilled at taking out massed infantry.
We look at the first table-row of our table, and see:
[tr]
[td]
[/td]
[td]
[/td]
[/tr]
The first td-tag we see is the leftmost cell in the table. This is where we want to have the name of the aspect. So, we'll put "Warp Spider" there. The second tr-tag is for the cell just right of the previous one (with the aspect's name in it). This is where we want to have the description of the warp spider, so we'll write "A warp-travelling, heavily armoured aspect skilled at taking out massed infantry".
The result is the following code:
[tr]
[td]Warp Spider[/td]
[td]A warp-travelling, heavily armoured aspect skilled at taking out massed infantry[/td]
[/tr]
The entire table now looks like this:
[table]
[tr]
[td]Warp Spider[/td]
[td]A warp-travelling, heavily armoured aspect skilled at taking out massed infantry[/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td][/td]
[td][/td]
[/tr]
[/table]
In the same way we write the text for the other aspect warriors, giving us the following code:
[table]
[tr]
[td]Warp Spider[/td]
[td]A warp-travelling, heavily armoured aspect skilled at taking out massed infantry[/td]
[/tr]
[tr]
[td]Striking Scorpion[/td]
[td]Heavily armoured aspect specialised in close quarter fighting. Ideal to take on tougher enemies.[/td]
[/tr]
[tr]
[td]Howling Banshee[/td]
[td]A quick and deadly aspect, especially skilled at taking out armoured foes.[/td]
[/tr]
[tr]
[td]Fire Dragons[/td]
[td]Lightly armoured aspect that specialises in destroying anything with heavy armour[/td]
[/tr]
[tr]
[td]Dire Avengers[/td]
[td]The most common, and most versatile aspect. Capable of holding itself in combat, and good all-round[/td]
[/tr]
[tr]
[td]Shining Spear[/td]
[td]A rare aspect, skilled at preforming lightning strikes. best used in hit-and-run style attacks[/td]
[/tr]
[tr]
[td]Swooping Hawks[/td]
[td]The fastest aspect, capabale of reaching any enemy, no matter how far away.[/td]
[/tr]
[tr]
[td]Dark Reaper[/td]
[td]Long range firepower aspect, specialised at taking out heavy infantry[/td]
[/tr]
[/table]
This gives the following result:
Warp Spider | A warp-travelling, heavily armoured aspect skilled at taking out massed infantry |
Striking Scorpion | Heavily armoured aspect specialised in close quarter fighting. Ideal to take on tougher enemies. |
Howling Banshee | A quick and deadly aspect, especially skilled at taking out armoured foes. |
Fire Dragons | Lightly armoured aspect that specialises in destroying anything with heavy armour |
Dire Avengers | The most common, and most versatile aspect. Capable of holding itself in combat, and good all-round |
Shining Spear | A rare aspect, skilled at preforming lightning strikes. best used in hit-and-run style attacks |
Swooping Hawks | The fastest aspect, capabale of reaching any enemy, no matter how far away. |
Dark Reaper | Long range firepower aspect, specialised at taking out heavy infantry |
So, our table is finished.
I hope that this is a bit clear, but if you still don't get it, don't worry too much. Tables are probably the most difficult part of the YABBC tags, so there is no shame in not understanding them

.
Tables: advancedWe now have the table with aspect warriors, however, it still looks a bit plain. Therefore, we are going to add some more detail to the table.
The first thing we could do, is to add a header text over each column. This is the same as making a new table row at the top of the table.
This gives us the following code:
[table]
[tr]
[td][/td]
[td][/td]
[/tr]
[tr]
[td]Warp Spider[/td]
[td]A warp-travelling, heavily armoured aspect skilled at taking out massed infantry[/td]
[/tr]
[tr]
[td]Striking Scorpion[/td]
[td]Heavily armoured aspect specialised in close quarter fighting. Ideal to take on tougher enemies.[/td]
[/tr]
[tr]
[td]Howling Banshee[/td]
[td]A quick and deadly aspect, especially skilled at taking out armoured foes.[/td]
[/tr]
[tr]
[td]Fire Dragons[/td]
[td]Lightly armoured aspect that specialises in destroying anything with heavy armour[/td]
[/tr]
[tr]
[td]Dire Avengers[/td]
[td]The most common, and most versatile aspect. Capable of holding itself in combat, and good all-round[/td]
[/tr]
[tr]
[td]Shining Spear[/td]
[td]A rare aspect, skilled at preforming lightning strikes. best used in hit-and-run style attacks[/td]
[/tr]
[tr]
[td]Swooping Hawks[/td]
[td]The fastest aspect, capabale of reaching any enemy, no matter how far away.[/td]
[/tr]
[tr]
[td]Dark Reaper[/td]
[td]Long range firepower aspect, specialised at taking out heavy infantry[/td]
[/tr]
[/table]
In the new first row, we'll write what's in the column below, like this:
[table]
[tr]
[td]Aspect[/td]
[td]Description[/td]
[/tr]
[tr]
[td]Warp Spider[/td]
[td]A warp-travelling, heavily armoured aspect skilled at taking out massed infantry[/td]
[/tr]
[tr]
[td]Striking Scorpion[/td]
[td]Heavily armoured aspect specialised in close quarter fighting. Ideal to take on tougher enemies.[/td]
[/tr]
[tr]
[td]Howling Banshee[/td]
[td]A quick and deadly aspect, especially skilled at taking out armoured foes.[/td]
[/tr]
[tr]
[td]Fire Dragons[/td]
[td]Lightly armoured aspect that specialises in destroying anything with heavy armour[/td]
[/tr]
[tr]
[td]Dire Avengers[/td]
[td]The most common, and most versatile aspect. Capable of holding itself in combat, and good all-round[/td]
[/tr]
[tr]
[td]Shining Spear[/td]
[td]A rare aspect, skilled at preforming lightning strikes. best used in hit-and-run style attacks[/td]
[/tr]
[tr]
[td]Swooping Hawks[/td]
[td]The fastest aspect, capabale of reaching any enemy, no matter how far away.[/td]
[/tr]
[tr]
[td]Dark Reaper[/td]
[td]Long range firepower aspect, specialised at taking out heavy infantry[/td]
[/tr]
[/table]
This unsurprisingly gives the following table:
Aspect | Description |
Warp Spider | A warp-travelling, heavily armoured aspect skilled at taking out massed infantry |
Striking Scorpion | Heavily armoured aspect specialised in close quarter fighting. Ideal to take on tougher enemies. |
Howling Banshee | A quick and deadly aspect, especially skilled at taking out armoured foes. |
Fire Dragons | Lightly armoured aspect that specialises in destroying anything with heavy armour |
Dire Avengers | The most common, and most versatile aspect. Capable of holding itself in combat, and good all-round |
Shining Spear | A rare aspect, skilled at preforming lightning strikes. best used in hit-and-run style attacks |
Swooping Hawks | The fastest aspect, capabale of reaching any enemy, no matter how far away. |
Dark Reaper | Long range firepower aspect, specialised at taking out heavy infantry |
Continued on the next post~MTWC