Page 1 of 1

Tile BBCode to insert tiles into your posts

Posted: Sun Apr 11, 2021 12:01 pm
by Decar
You can insert tiles into your posts using the following BBCode:

Code: Select all

[tile]{Tile codes}[/tile]

There is also a tile button in the editor for quick access.

For example:

Code: Select all

[tile]CRRR[/tile]

Displays:


Rotate tiles

You can rotate tiles using the rotate parameter.
For example:

Code: Select all

[tile rotate=270]CRRR[/tile]

Displays:


Resize tiles

You can resize tiles so using the size parameter.
For example:

Code: Select all

[tile size=200]CRRR[/tile]

Displays:


Resize and Rotate tiles

For example:

Code: Select all

[tile size=200 rotate=270]CRRR[/tile]

Displays:


The following tile codes are available:
Base Game

Re: Tile BBCode to insert tiles into your posts

Posted: Sun Apr 11, 2021 6:06 pm
by Decar
Base Game
CCCC+ CCCF+ CCCF CCCR+ CCCR

Code: Select all

[tile]CCCC+[/tile]

Code: Select all

[tile]CCCF+[/tile]

Code: Select all

[tile]CCCF[/tile]

Code: Select all

[tile]CCCR+[/tile]

Code: Select all

[tile]CCCR[/tile]
CCFF+ CCFF CCFFs CCRR+ CCRR

Code: Select all

[tile]CCFF+[/tile]

Code: Select all

[tile]CCFF[/tile]

Code: Select all

[tile]CCFFs[/tile]

Code: Select all

[tile]CCRR+[/tile]

Code: Select all

[tile]CCRR[/tile]
CFCF+ CFCF CFCFs CFFF CFRR

Code: Select all

[tile]CFCF+[/tile]

Code: Select all

[tile]CFCF[/tile]

Code: Select all

[tile]CFCFs[/tile]

Code: Select all

[tile]CFFF[/tile]

Code: Select all

[tile]CFRR[/tile]
CRFR CRRF CRRR FFFF FFFR

Code: Select all

[tile]CRFR[/tile]

Code: Select all

[tile]CRRF[/tile]

Code: Select all

[tile]CRRR[/tile]

Code: Select all

[tile]FFFF[/tile]

Code: Select all

[tile]FFFR[/tile]
FFRR FRFR FRFR1 FRRR RRRR

Code: Select all

[tile]FFRR[/tile]

Code: Select all

[tile]FRFR[/tile]

Code: Select all

[tile]FRFR1[/tile]

Code: Select all

[tile]FRRR[/tile]

Code: Select all

[tile]RRRR[/tile]
Alternates
XXXX CCCC RRFF RFRF

Code: Select all

[tile]XXXX[/tile]

Code: Select all

[tile]CCCC[/tile]

Code: Select all

[tile]RRFF[/tile]

Code: Select all

[tile]RFRF[/tile]

Re: Tile BBCode to insert tiles into your posts

Posted: Fri Apr 16, 2021 7:42 pm
by wallaceprime
Great work, Decar! I added tile emoticons to our Discord server, but those can't be rotated or resized.

Re: Tile BBCode to insert tiles into your posts

Posted: Sat Apr 17, 2021 8:39 am
by Decar
Thanks Wally,

I was quite happy how they worked on the forum too:
viewtopic.php?p=38#p38

I was able to quickly build up an example.
Just have to find a use for this now: :lol:





Making Tables

You can make tables using the following tags:

Code: Select all

[table][/table]
[tr][/tr]
[td][/td]
If you are familiar with HTML tables, you should be ok. If not, you have to create the table 1 row at a time, as an example:
1 2
3 4
is produced with the following:

Code: Select all

[table]
[tr]
[td]1[/td]
[td]2[/td]
[/tr]
[tr]
[td]3[/td]
[td]4[/td]
[/tr]
[/table]