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:
There is also a
tile button in the editor for quick access.
For example:
Displays:
Rotate tiles
You can rotate tiles using the
rotate parameter.
For example:
Displays:
Resize tiles
You can resize tiles so using the
size parameter.
For example:
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: 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:
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:
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]