<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Simulation Soccer League - SSL Projects]]></title>
		<link>https://forum.simulationsoccer.com/</link>
		<description><![CDATA[Simulation Soccer League - https://forum.simulationsoccer.com]]></description>
		<pubDate>Wed, 16 Sep 2026 12:08:29 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[SSL World Cup Sweepstakes *NO BUY IN/PRIZE*]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=9801</link>
			<pubDate>Sat, 06 Jun 2026 10:25:20 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=956">ReadySalted</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=9801</guid>
			<description><![CDATA[Morning gamers <br />
<br />
If you know what a sweepstakes is and you're intrested reply below :)<br />
<br />
If you don't know what a sweepstakes is, it's basically a team will get picked for you by random and whoevers team wins/gets the furthest wins the sweepstakes, normally you'd buy in and win money if you win but I'd rather avoid that for this <br />
<br />
I'll stream the results of the wheel at a time TBD, just wanted to get this out quickly before I'm busy for the day, will be first come first serve!]]></description>
			<content:encoded><![CDATA[Morning gamers <br />
<br />
If you know what a sweepstakes is and you're intrested reply below :)<br />
<br />
If you don't know what a sweepstakes is, it's basically a team will get picked for you by random and whoevers team wins/gets the furthest wins the sweepstakes, normally you'd buy in and win money if you win but I'd rather avoid that for this <br />
<br />
I'll stream the results of the wheel at a time TBD, just wanted to get this out quickly before I'm busy for the day, will be first come first serve!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Tables in forum posts]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=9515</link>
			<pubDate>Mon, 04 May 2026 08:15:20 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=6">Canadice</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=9515</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: x-large;" class="mycode_size"> Tables in forum posts </span></div>
Tables are a great way to give structure to information within posts on the forum but they are tricky to implement correctly. This text tries to describe the different structures and commands needed as well as some pitfalls you can encounter.<br />
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Tables</span></span><br />
To create a table you need to wrap all the information within the table code. There is also an argument you need to add to define the width of the table using <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=width] [/table]</code></div></div> width can be between 1 and 100 as is read as the percentage width of the page the table should take up.<br />
<br />
For example <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=100]<br />
[tr][th]This is a table[/th][/tr]<br />
[tr][td]This is a table[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:100%;">
<tr><th class="tcat" align="middle"><strong>This is a table</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is a table</td></tr>
</table>
<br />
while<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=50]<br />
[tr][th]This is a table[/th][/tr]<br />
[tr][td]This is a table[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:50%;">
<tr><th class="tcat" align="middle"><strong>This is a table</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is a table</td></tr>
</table>
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Rows</span></span><br />
In order for the table to have rows you need to wrap any row information within <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[tr] [/tr]</code></div></div><br />
In the above examples the table consists of two rows so two instances of the wrap is required.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=100]<br />
[tr][th]This is a row[/th][/tr]<br />
[tr][td]This is another row[/td][/tr]<br />
[tr][td]This is a third row[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:100%;">
<tr><th class="tcat" align="middle"><strong>This is a row</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is another row</td></tr>
<tr><td class="trow1" valign="top" align="center">This is a third row</td></tr>
</table>
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Columns</span></span><br />
There are two ways to produce columns (or cells), header cells and normal cells. Header cells have double borders and the text is written in bold, while normal cells have single borders and normal text. You can add as many cells you want within a row, just remember to wrap them within their given command.<br />
<br />
Header cells are given using <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[th] [/th]</code></div></div> while normal cells are given using <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[td] [/td]</code></div></div><br />
For example<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=100]<br />
[tr][th]This is a header cell[/th][th]This is a header cell[/th][th]This is a header cell[/th][/tr]<br />
[tr][td]This is a normal cell[/td][td]This is a normal cell[/td][td]This is a normal cell[/td][/tr]<br />
[tr][td]This is a normal cell[/td][td]This is a normal cell[/td][td]This is a normal cell[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:100%;">
<tr><th class="tcat" align="middle"><strong>This is a header cell</strong></th><th class="tcat" align="middle"><strong>This is a header cell</strong></th><th class="tcat" align="middle"><strong>This is a header cell</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td></tr>
<tr><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td></tr>
</table>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: x-large;" class="mycode_size"> Tables in forum posts </span></div>
Tables are a great way to give structure to information within posts on the forum but they are tricky to implement correctly. This text tries to describe the different structures and commands needed as well as some pitfalls you can encounter.<br />
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Tables</span></span><br />
To create a table you need to wrap all the information within the table code. There is also an argument you need to add to define the width of the table using <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=width] [/table]</code></div></div> width can be between 1 and 100 as is read as the percentage width of the page the table should take up.<br />
<br />
For example <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=100]<br />
[tr][th]This is a table[/th][/tr]<br />
[tr][td]This is a table[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:100%;">
<tr><th class="tcat" align="middle"><strong>This is a table</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is a table</td></tr>
</table>
<br />
while<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=50]<br />
[tr][th]This is a table[/th][/tr]<br />
[tr][td]This is a table[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:50%;">
<tr><th class="tcat" align="middle"><strong>This is a table</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is a table</td></tr>
</table>
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Rows</span></span><br />
In order for the table to have rows you need to wrap any row information within <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[tr] [/tr]</code></div></div><br />
In the above examples the table consists of two rows so two instances of the wrap is required.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=100]<br />
[tr][th]This is a row[/th][/tr]<br />
[tr][td]This is another row[/td][/tr]<br />
[tr][td]This is a third row[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:100%;">
<tr><th class="tcat" align="middle"><strong>This is a row</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is another row</td></tr>
<tr><td class="trow1" valign="top" align="center">This is a third row</td></tr>
</table>
<br />
<span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Columns</span></span><br />
There are two ways to produce columns (or cells), header cells and normal cells. Header cells have double borders and the text is written in bold, while normal cells have single borders and normal text. You can add as many cells you want within a row, just remember to wrap them within their given command.<br />
<br />
Header cells are given using <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[th] [/th]</code></div></div> while normal cells are given using <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[td] [/td]</code></div></div><br />
For example<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[table=100]<br />
[tr][th]This is a header cell[/th][th]This is a header cell[/th][th]This is a header cell[/th][/tr]<br />
[tr][td]This is a normal cell[/td][td]This is a normal cell[/td][td]This is a normal cell[/td][/tr]<br />
[tr][td]This is a normal cell[/td][td]This is a normal cell[/td][td]This is a normal cell[/td][/tr]<br />
[/table]</code></div></div><br />
produces<br />
<table cellspacing="1" cellpadding="3" class="postTable" style="width:100%;">
<tr><th class="tcat" align="middle"><strong>This is a header cell</strong></th><th class="tcat" align="middle"><strong>This is a header cell</strong></th><th class="tcat" align="middle"><strong>This is a header cell</strong></th></tr>
<tr><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td></tr>
<tr><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td><td class="trow1" valign="top" align="center">This is a normal cell</td></tr>
</table>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Questions for Rashford & Dom Podcast (-:]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=7569</link>
			<pubDate>Mon, 04 Aug 2025 11:31:51 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=238">Domffl</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=7569</guid>
			<description><![CDATA[You know that burning question that you’ve had since joining the SSL that you just haven’t felt the freedom to ask? Well, here is the place to ask it! Drop some league-related questions and we’ll answer them with complete accuracy and unflinching poise.]]></description>
			<content:encoded><![CDATA[You know that burning question that you’ve had since joining the SSL that you just haven’t felt the freedom to ask? Well, here is the place to ask it! Drop some league-related questions and we’ll answer them with complete accuracy and unflinching poise.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Same IP Thread]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=1252</link>
			<pubDate>Mon, 25 Apr 2022 06:18:41 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=6">Canadice</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=1252</guid>
			<description><![CDATA[ If you and another member of the forum will be sharing the same IP address it&#39;s mandatory to inform us of this. From now on, instead of messaging us please inform us in this thread and we will make sure to take note of it.&lt;br&gt;&lt;br&gt; ]]></description>
			<content:encoded><![CDATA[ If you and another member of the forum will be sharing the same IP address it&#39;s mandatory to inform us of this. From now on, instead of messaging us please inform us in this thread and we will make sure to take note of it.&lt;br&gt;&lt;br&gt; ]]></content:encoded>
		</item>
	</channel>
</rss>