Discovery Gaming Community

Full Version: MyCode on this forum,BBCode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
All of the MyCode ends with it's starting code, except with a '/' forward slash in front of the word, in the brackets such as [/code]
Thanks to Skorak for a few codes ^_^
Thanks to Officially_that_Guy for the table example :*

I decided, to remove the Examples.

Code:
[code]
[quote]

[b]
[i]
[u]
[s]

[float=] (left/right)
[align=] (left, center, right, justify)
[indent]
[pi amount=] (punctuation based on number, closing just pi)

[font=] (Arial, Open Sans, Agency FB, Orbitron, Oswald, Merienda One // You may use custom fonts, as long as the font is installed on the computer. Ideally use [url=https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows]windows default fonts[/url].
[size=] (xx-small, x-small, small, medium, large, x-large, xx-large)
[color=] (Use Hex Color Code for best results. I've seen word colors work as well, not ideal)

[url=]
[img=WxH] (Width, Hieght)
[email=]

[spoiler=] (drop box with optional title)
[sp2] (Blur spoiler)
[hr] (Horizontal Line)
[hrc]# (followed by hex code, Horizontal line colored)

[list] (list, no dot's)
[list=1] (number list)
[*] (used to indent on list)

[table] SEE AT BOTTOM
[tr] SEE AT BOTTOM
[td] SEE AT BOTTOM

[img float=] (left/right, Don't believe there's a way to scale it)
[img align=] (left/right, much closer to the edge of the post, doesn't float above items)

[p3d] (allows you to embed the model on the thread)
[video=] (You can use: Dailymotion, Facebook, LiveLeak, MetaCafe, Veoh, Vimeo, Youtube.

BBCode Function
Code:
        [table]
        [/table]
Bracket code for the entire table. Must be opened, contain TR and TD before being closed again.
Code:
        [tr]
        [/tr]
Bracket code for a row inside the table. Must be used before TD.
Code:
        [td]
        [/td]
Bracket code for a column content. Each TD represents one column. Every TR inside a TABLE must contain the same amount of TDs.
Looking over it those are the first coming to mind you are missing:
Code:
[pi amount=14] [/pi]
[sp2] [/sp2]
Text
Text

also img can do this:
Code:
[img float=right][img]
[img float=right]http://sig.grumpybumpers.com/host/skorak.gif?dateline=1470513872[/img]
There's so few of them aren't there.
(12-13-2016, 03:11 PM)Corile Wrote: [ -> ]There's so few of them aren't there.

Actuallly there's quite alot when you consider the variations of each of the defaults

Like..


Image resize

So..
Code:
[img]https://s16.postimg.org/ijsdy4ek5/Spider.png[/img]

[img=100x33]https://s16.postimg.org/ijsdy4ek5/Spider.png[/img]
Makes..
[Image: Spider.png]
This size..
[Image: Spider.png]
You forgot table. Quite useful for POBs and for BBCode explanation threads (HINT!).

BBCode Function
Code:
        [table]
        [/table]
Bracket code for the entire table. Must be opened, contain TR and TD before being closed again.
Code:
        [tr]
        [/tr]
Bracket code for a row inside the table. Must be used before TD.
Code:
        [td]
        [/td]
Bracket code for a column content. Each TD represents one column. Every TR inside a TABLE must contain the same amount of TDs.