<?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 Discussions]]></title>
		<link>https://forum.simulationsoccer.com/</link>
		<description><![CDATA[Simulation Soccer League - https://forum.simulationsoccer.com]]></description>
		<pubDate>Tue, 16 Jun 2026 23:26:51 +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[F1 Predictions (2026)]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=8974</link>
			<pubDate>Wed, 25 Feb 2026 04:54:40 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=67">RashfordU</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=8974</guid>
			<description><![CDATA[Good Day All!<br />
<br />
Back again with an invite link to anyone that would like to join an F1 Predictions League with fellow sim leaguers.<br />
If you would like to join, please click the link below!<br />
<br />
<span style="color: #FFDC00;" class="mycode_color">NOTE: The league will share your name, so please do not doxx yourself and use a fake / sim name when signing up.</span><br />
<br />
<a href="https://f1predict.formula1.com/en/leagues/join/C8K4YZRGK06" target="_blank" rel="noopener" class="mycode_url">F1 Predictions Invite Link</a><br />
CODE: C8K4YZRGK06]]></description>
			<content:encoded><![CDATA[Good Day All!<br />
<br />
Back again with an invite link to anyone that would like to join an F1 Predictions League with fellow sim leaguers.<br />
If you would like to join, please click the link below!<br />
<br />
<span style="color: #FFDC00;" class="mycode_color">NOTE: The league will share your name, so please do not doxx yourself and use a fake / sim name when signing up.</span><br />
<br />
<a href="https://f1predict.formula1.com/en/leagues/join/C8K4YZRGK06" target="_blank" rel="noopener" class="mycode_url">F1 Predictions Invite Link</a><br />
CODE: C8K4YZRGK06]]></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[EAFC 25 - SSL Pro Club]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=6851</link>
			<pubDate>Mon, 14 Apr 2025 13:00:29 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=636">norththegreatestshowman</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=6851</guid>
			<description><![CDATA[<span style="color: #e8eaed;" class="mycode_color"><span style="font-size: 1pt;" class="mycode_size"><span style="font-family: Arial, sans-serif;" class="mycode_font">Hello everyone!</span></span></span><br />
<br />
<span style="font-size: medium;" class="mycode_size"><span style="color: #e8eaed;" class="mycode_color"><span style="font-family: Arial, sans-serif;" class="mycode_font">After a few years without playing, and in view of the many football fans and EAFC/FIFA players present, I wanted to suggest starting a club to bring together SSL players for something a little something aside from the league.<br />
The goal, of course, is above all to have fun.<br />
I've already created the club on the newgens platforms (PS5/XBOX/PC), but everything is editable and debatable (names, colors, stadium, etc.).<br />
I'm interested in playing CM, Target Forward, or Goalkeeper (spoiler, I'm bad at the game).<br />
Feel free to DM me on Discord or come chat under the #fifa channel so we can make this club a fun little thing!</span></span> </span><br />
<br />
<span style="font-size: medium;" class="mycode_size"><span style="color: #e8eaed;" class="mycode_color"><span style="font-family: Arial, sans-serif;" class="mycode_font">(Note : The club is called SSL SC cause SSL FC is already taken for some reason :,3)</span></span></span><br />
<br />
<img src="https://i.imgur.com/BquuKPz.png" loading="lazy"  alt="[Image: BquuKPz.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[<span style="color: #e8eaed;" class="mycode_color"><span style="font-size: 1pt;" class="mycode_size"><span style="font-family: Arial, sans-serif;" class="mycode_font">Hello everyone!</span></span></span><br />
<br />
<span style="font-size: medium;" class="mycode_size"><span style="color: #e8eaed;" class="mycode_color"><span style="font-family: Arial, sans-serif;" class="mycode_font">After a few years without playing, and in view of the many football fans and EAFC/FIFA players present, I wanted to suggest starting a club to bring together SSL players for something a little something aside from the league.<br />
The goal, of course, is above all to have fun.<br />
I've already created the club on the newgens platforms (PS5/XBOX/PC), but everything is editable and debatable (names, colors, stadium, etc.).<br />
I'm interested in playing CM, Target Forward, or Goalkeeper (spoiler, I'm bad at the game).<br />
Feel free to DM me on Discord or come chat under the #fifa channel so we can make this club a fun little thing!</span></span> </span><br />
<br />
<span style="font-size: medium;" class="mycode_size"><span style="color: #e8eaed;" class="mycode_color"><span style="font-family: Arial, sans-serif;" class="mycode_font">(Note : The club is called SSL SC cause SSL FC is already taken for some reason :,3)</span></span></span><br />
<br />
<img src="https://i.imgur.com/BquuKPz.png" loading="lazy"  alt="[Image: BquuKPz.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[F1 Fantasy (2025)]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=6554</link>
			<pubDate>Wed, 12 Mar 2025 16:10:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=67">RashfordU</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=6554</guid>
			<description><![CDATA[Hey Friends,<br />
<br />
If anyone is interested, I am running an F1 Fantasy League for this upcoming season.<br />
Here is the link if you are interested in joining.<br />
<br />
<span style="color: #2ecc40;" class="mycode_color">IMPORTANT: The League WILL display your personal name shown in your account, I do suggest you change your name on the account in order to avoid Doxxing yourself</span><br />
<br />
<a href="https://fantasy.formula1.com/en/leagues/join/C4PNEMTJU03/" target="_blank" rel="noopener" class="mycode_url">SSL F1 Fantasy League</a><br />
<a href="https://f1predict.formula1.com/league/join/C66XGUFG803" target="_blank" rel="noopener" class="mycode_url">SSL F1 Predictions League</a>]]></description>
			<content:encoded><![CDATA[Hey Friends,<br />
<br />
If anyone is interested, I am running an F1 Fantasy League for this upcoming season.<br />
Here is the link if you are interested in joining.<br />
<br />
<span style="color: #2ecc40;" class="mycode_color">IMPORTANT: The League WILL display your personal name shown in your account, I do suggest you change your name on the account in order to avoid Doxxing yourself</span><br />
<br />
<a href="https://fantasy.formula1.com/en/leagues/join/C4PNEMTJU03/" target="_blank" rel="noopener" class="mycode_url">SSL F1 Fantasy League</a><br />
<a href="https://f1predict.formula1.com/league/join/C66XGUFG803" target="_blank" rel="noopener" class="mycode_url">SSL F1 Predictions League</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Movie &amp; TV thread]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=3490</link>
			<pubDate>Tue, 28 Mar 2023 16:53:44 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=399">Viper</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=3490</guid>
			<description><![CDATA[ why not create a thread where we can talk about recent movies and TV? I’ll go first — you can never go wrong with FRIENDS. Comedy classic, rewatching for the 8th time currently. Now you guys go next, lets see what you watch&#33; ]]></description>
			<content:encoded><![CDATA[ why not create a thread where we can talk about recent movies and TV? I’ll go first — you can never go wrong with FRIENDS. Comedy classic, rewatching for the 8th time currently. Now you guys go next, lets see what you watch&#33; ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ggs shake my hand]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=2337</link>
			<pubDate>Fri, 16 Sep 2022 21:06:00 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=92">4D Chess</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=2337</guid>
			<description><![CDATA[ great season everyone. ggs shake my hand ]]></description>
			<content:encoded><![CDATA[ great season everyone. ggs shake my hand ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[&quot;Real Life&quot; FM Sim]]></title>
			<link>https://forum.simulationsoccer.com/showthread.php?tid=1868</link>
			<pubDate>Fri, 08 Jul 2022 03:32:41 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.simulationsoccer.com/member.php?action=profile&uid=227">Legend</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.simulationsoccer.com/showthread.php?tid=1868</guid>
			<description><![CDATA[ Would anyone be interested in doing some version of a &amp;quot;Real Life&amp;quot; FM Sim? Just on a thread on the forums like an unofficial community side show.&lt;br&gt;&lt;br&gt;Basically I had an idea to kill some time and simulate years into the future with created players, managers, coaches, or whatever else people would like to see or create. Heck maybe an &amp;quot;owner&amp;quot; create where someone &amp;quot;takes&amp;quot; over a club, wipe away debt, and give a large transfer budget (or small one if that&#39;s your fancy). &lt;br&gt;&lt;br&gt;Nothing major or formal, maybe sim a year a week or something while I post screenshots of players careers, moves, etc. More of a fly on the wall approach.&lt;br&gt;&lt;br&gt;If this peaks anyone&#39;s interest I&#39;m open to see ideas on how to make it interesting, and not have everyone create a 200 PA wonderkid.  ]]></description>
			<content:encoded><![CDATA[ Would anyone be interested in doing some version of a &amp;quot;Real Life&amp;quot; FM Sim? Just on a thread on the forums like an unofficial community side show.&lt;br&gt;&lt;br&gt;Basically I had an idea to kill some time and simulate years into the future with created players, managers, coaches, or whatever else people would like to see or create. Heck maybe an &amp;quot;owner&amp;quot; create where someone &amp;quot;takes&amp;quot; over a club, wipe away debt, and give a large transfer budget (or small one if that&#39;s your fancy). &lt;br&gt;&lt;br&gt;Nothing major or formal, maybe sim a year a week or something while I post screenshots of players careers, moves, etc. More of a fly on the wall approach.&lt;br&gt;&lt;br&gt;If this peaks anyone&#39;s interest I&#39;m open to see ideas on how to make it interesting, and not have everyone create a 200 PA wonderkid.  ]]></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>