Tile BBCode to insert tiles into your posts

Post Reply
User avatar
Decar
Posts: 33
Joined: Tue Feb 02, 2021 10:33 pm
Answers: 0
Location: South Wales
Contact:

Roles

Tile BBCode to insert tiles into your posts

Post 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


User avatar
Decar
Posts: 33
Joined: Tue Feb 02, 2021 10:33 pm
Answers: 0
Location: South Wales
Contact:

Roles

Re: Tile BBCode to insert tiles into your posts

Post 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]
User avatar
wallaceprime
Posts: 3
Joined: Thu Apr 15, 2021 7:58 pm
Answers: 0

Re: Tile BBCode to insert tiles into your posts

Post by wallaceprime »

Great work, Decar! I added tile emoticons to our Discord server, but those can't be rotated or resized.
User avatar
Decar
Posts: 33
Joined: Tue Feb 02, 2021 10:33 pm
Answers: 0
Location: South Wales
Contact:

Roles

Re: Tile BBCode to insert tiles into your posts

Post 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]
Post Reply