<?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[Anime Forums - All Forums]]></title>
		<link>http://animeforum.org/</link>
		<description><![CDATA[Anime Forums - http://animeforum.org]]></description>
		<pubDate>Wed, 17 Mar 2010 04:29:41 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Catching IP Address?]]></title>
			<link>http://animeforum.org/thread-16.html</link>
			<pubDate>Tue, 02 Mar 2010 12:50:56 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-16.html</guid>
			<description><![CDATA[The following must first be set up onto a website (Free hosting would work just fine).<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Base Code<br />
<br />
&lt;?php<br />
<br />
//--&gt; Edit these details.<br />
&#36;databaseDetails = Array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Host'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'localhost',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Port'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbport',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Name'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbname',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'User'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbusername',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Pass'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbpassword'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
);<br />
<br />
//--&gt;The path to the image you wish to display.<br />
&#36;imageFileName = 'myNeowinSig.jpg';<br />
<br />
//--&gt; Lets go!<br />
<br />
//--&gt; Checking the image exists.<br />
if ( @file_exists(&#36;imageFileName) &amp;&amp; (function_exists('imagejpeg')))<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Collecting visitor information<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;vistorIP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addslashes((getenv(HTTP_X_FORWARDED_FOR)) ? getenv(HTTP_X_FORWARDED_FOR) : getenv(REMOTE_ADDR));<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;visitorReferrer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addslashes(( &#36;_SERVER['HTTP_REFERER'&#93; ) ? &#36;_SERVER['HTTP_REFERER'&#93; : 'Referrer undetectable.');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;visitorBrowser =&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addslashes(( &#36;_SERVER['HTTP_USER_AGENT'&#93; ) ? &#36;_SERVER['HTTP_USER_AGENT'&#93; : 'Browser undetectable.');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Logging details to database<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;con = mysqli_connect(&#36;databaseDetails['Host'&#93;,&#36;databaseDetails['User'&#93;,&#36;databaseDetails[<br />
'Pass'&#93;,&#36;databaseDetails['Name'&#93;,&#36;databaseDetails['Port'&#93;) or die();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;sql = "INSERT INTO `imageLog` (IP , Referrer , Browser , Timestamp )VALUES( '{&#36;vistorIP}' , '{&#36;visitorReferrer}' , '{&#36;visitorBrowser}' , now() )";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;res = mysqli_query(&#36;con,&#36;sql) or die();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Sending JPEG image header to browser.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;header("Content-Type: image/jpg");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;myImage = imagecreatefromjpeg(&#36;imageFileName);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Sending image to user.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imagejpeg(&#36;myImage);<br />
}<br />
?&gt;</code></div></div>
<br />
Now for the testing part.<br />
<br />
If Embedding On A Site (Use this to test the image on your site before trying to broadcast it?)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;img alt="Sorry, image unavailable." src="http://yourServer/imageScript.php" /&gt;</code></div></div>
]]></description>
			<content:encoded><![CDATA[The following must first be set up onto a website (Free hosting would work just fine).<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>Base Code<br />
<br />
&lt;?php<br />
<br />
//--&gt; Edit these details.<br />
&#36;databaseDetails = Array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Host'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'localhost',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Port'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbport',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Name'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbname',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'User'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbusername',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Pass'&nbsp;&nbsp;=&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'dbpassword'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
);<br />
<br />
//--&gt;The path to the image you wish to display.<br />
&#36;imageFileName = 'myNeowinSig.jpg';<br />
<br />
//--&gt; Lets go!<br />
<br />
//--&gt; Checking the image exists.<br />
if ( @file_exists(&#36;imageFileName) &amp;&amp; (function_exists('imagejpeg')))<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Collecting visitor information<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;vistorIP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addslashes((getenv(HTTP_X_FORWARDED_FOR)) ? getenv(HTTP_X_FORWARDED_FOR) : getenv(REMOTE_ADDR));<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;visitorReferrer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addslashes(( &#36;_SERVER['HTTP_REFERER'] ) ? &#36;_SERVER['HTTP_REFERER'] : 'Referrer undetectable.');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;visitorBrowser =&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addslashes(( &#36;_SERVER['HTTP_USER_AGENT'] ) ? &#36;_SERVER['HTTP_USER_AGENT'] : 'Browser undetectable.');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Logging details to database<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;con = mysqli_connect(&#36;databaseDetails['Host'],&#36;databaseDetails['User'],&#36;databaseDetails[<br />
'Pass'],&#36;databaseDetails['Name'],&#36;databaseDetails['Port']) or die();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;sql = "INSERT INTO `imageLog` (IP , Referrer , Browser , Timestamp )VALUES( '{&#36;vistorIP}' , '{&#36;visitorReferrer}' , '{&#36;visitorBrowser}' , now() )";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;res = mysqli_query(&#36;con,&#36;sql) or die();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Sending JPEG image header to browser.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;header("Content-Type: image/jpg");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;myImage = imagecreatefromjpeg(&#36;imageFileName);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//--&gt; Sending image to user.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imagejpeg(&#36;myImage);<br />
}<br />
?&gt;</code></div></div>
<br />
Now for the testing part.<br />
<br />
If Embedding On A Site (Use this to test the image on your site before trying to broadcast it?)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;img alt="Sorry, image unavailable." src="http://yourServer/imageScript.php" /&gt;</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Found some nice knives with great prices and free shipping]]></title>
			<link>http://animeforum.org/thread-15.html</link>
			<pubDate>Tue, 02 Mar 2010 01:14:43 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-15.html</guid>
			<description><![CDATA[Hey, I found some fantastic looking knives with great prices and free shipping. The website is <a href="http://www.liangdianup.com" target="_blank">http://www.liangdianup.com</a> and these LDU Company people have bayonet knives, folders, switchblades, out the front knives, butterfly knives, and a bunch more. The web address for all of the knives is <a href="http://www.liangdianup.com/knives_1.htm" target="_blank">http://www.liangdianup.com/knives_1.htm</a><br />
I like the all black Extrema Ratio bayonet knife the best but I also like the throwing stars.]]></description>
			<content:encoded><![CDATA[Hey, I found some fantastic looking knives with great prices and free shipping. The website is <a href="http://www.liangdianup.com" target="_blank">http://www.liangdianup.com</a> and these LDU Company people have bayonet knives, folders, switchblades, out the front knives, butterfly knives, and a bunch more. The web address for all of the knives is <a href="http://www.liangdianup.com/knives_1.htm" target="_blank">http://www.liangdianup.com/knives_1.htm</a><br />
I like the all black Extrema Ratio bayonet knife the best but I also like the throwing stars.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Found some nice knives with great prices and free shipping]]></title>
			<link>http://animeforum.org/thread-13.html</link>
			<pubDate>Sun, 14 Feb 2010 22:59:02 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-13.html</guid>
			<description><![CDATA[Hey, I found some fantastic looking knives with great prices and free shipping. The website is <a href="http://www.liangdianup.com" target="_blank">http://www.liangdianup.com</a> and these LDU Company people have bayonet knives, folders, switchblades, out the front knives, butterfly knives, and a bunch more. The web address for all of the knives is <a href="http://www.liangdianup.com/knives_1.htm" target="_blank">http://www.liangdianup.com/knives_1.htm</a><br />
I like the all black Extrema Ratio bayonet knife the best but I also like the throwing stars.]]></description>
			<content:encoded><![CDATA[Hey, I found some fantastic looking knives with great prices and free shipping. The website is <a href="http://www.liangdianup.com" target="_blank">http://www.liangdianup.com</a> and these LDU Company people have bayonet knives, folders, switchblades, out the front knives, butterfly knives, and a bunch more. The web address for all of the knives is <a href="http://www.liangdianup.com/knives_1.htm" target="_blank">http://www.liangdianup.com/knives_1.htm</a><br />
I like the all black Extrema Ratio bayonet knife the best but I also like the throwing stars.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FIRE! Theme]]></title>
			<link>http://animeforum.org/thread-12.html</link>
			<pubDate>Fri, 12 Feb 2010 03:23:15 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-12.html</guid>
			<description><![CDATA[I have brought my FIRE! theme from HTL here.  It's a dark red and black theme with an animated flaming site logo (customized for this site) and as many images as possible converted to ones that have transparent backgrounds.  There are, however, a few known issues:<ul>
<li>Some buttons (such as the "post reply" buttons and the area around the text box in the new reply page) still show as the default gray.  This appears to be a computer setting, not one I can change on the site.</li>
<li><del>Also, in full reply mode the "font" and "text size" options are almost impossible to read, again "on my computer" for the same reason as above. I simply can't find anywhere to change this.</del> FIXED - there was a code, just not as simple to find/deal with.</li>
<li>Finally, the border around the text boxes are blue which doesn't match the reds of the theme, BUT I like it this way. It stands out and draws attention to the places you're adding text. <span style="font-weight: bold;">This one I can change, if people want it "fixed"</span><br />
</li></ul>
<br />
If you want to use the theme, go to the <a href="http://animeforum.org/usercp.php" target="_blank">User Control Panel</a> -&gt; <a href="http://animeforum.org/usercp.php?action=options" target="_blank">Edit Options</a> -&gt; Other Options -&gt; Board Style -&gt; FIRE!<br />
<br />
<span style="font-weight: bold;">Preview</span><br />
<img src="http://www.animeforum.org/images/firepriviewaf.jpg" width="847" height="313" border="0" alt="[Image: firepriviewaf.jpg&#93;" />]]></description>
			<content:encoded><![CDATA[I have brought my FIRE! theme from HTL here.  It's a dark red and black theme with an animated flaming site logo (customized for this site) and as many images as possible converted to ones that have transparent backgrounds.  There are, however, a few known issues:<ul>
<li>Some buttons (such as the "post reply" buttons and the area around the text box in the new reply page) still show as the default gray.  This appears to be a computer setting, not one I can change on the site.</li>
<li><del>Also, in full reply mode the "font" and "text size" options are almost impossible to read, again "on my computer" for the same reason as above. I simply can't find anywhere to change this.</del> FIXED - there was a code, just not as simple to find/deal with.</li>
<li>Finally, the border around the text boxes are blue which doesn't match the reds of the theme, BUT I like it this way. It stands out and draws attention to the places you're adding text. <span style="font-weight: bold;">This one I can change, if people want it "fixed"</span><br />
</li></ul>
<br />
If you want to use the theme, go to the <a href="http://animeforum.org/usercp.php" target="_blank">User Control Panel</a> -&gt; <a href="http://animeforum.org/usercp.php?action=options" target="_blank">Edit Options</a> -&gt; Other Options -&gt; Board Style -&gt; FIRE!<br />
<br />
<span style="font-weight: bold;">Preview</span><br />
<img src="http://www.animeforum.org/images/firepriviewaf.jpg" width="847" height="313" border="0" alt="[Image: firepriviewaf.jpg]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The Hunt for Cecilia Rose the Demonic Princess (anyone may join)]]></title>
			<link>http://animeforum.org/thread-11.html</link>
			<pubDate>Wed, 10 Feb 2010 03:51:06 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-11.html</guid>
			<description><![CDATA[Cecilia Rose has been trying to hide from her father Satan, King and Ruler of the underworld for centuries. Up till now she has been successful. Satan hates his daughter with a passion for she is one of the few, if she chooses to do so that can actually kill him. He also hates her because she reminds him of his dead wife Aeriela because she looks just like her. He abused her for years in many ways before she managed to escape.  <br />
<br />
Today, she is doing good and helping others. She loves children and loves caring for them. She has made a good life for herself living in peace in a small village called Nebroc. Nebroc is a very peaceful peace it is there she has met a man who is a werewolf and they fell in love with one another. It is there wedding day and she is wearing a beautiful blue dress with gold trim, she is wearing a golden tiara with different color stones that ranged from amethysist crystals to rose quarts, to floruite and citrite. The tiara sparkled as the light hit it. As the preacher came out he could see that Cecilia Rose was quiet pregnant and looked to be no more then 5 months along. She was pregnant with twin girls and she wanted to marry him before they were born. Cecilia was nervous she knew her father was still hunting for her and knew trouble was coming soon. To her surprise they got through the whole wedding before the trouble came. <br />
<br />
It was on their hunny moon that her fathers men found them. They managed to kill her new husband, but Cecilia managed to kill them she began to run again. She ran outside and took flight in her angel form that she got from her mother and began to head as far away from Nebroc as she could for their safety. She knew now that her father and his men would not only be after her but her children.<br />
<br />
She wondered who she would come across in her travels and wondered if they dared to be on her side or her fathers. She knew only time would tell.<br />
<br />
<br />
<br />
<br />
Note: character sheet coming soon for Cecilia Rose]]></description>
			<content:encoded><![CDATA[Cecilia Rose has been trying to hide from her father Satan, King and Ruler of the underworld for centuries. Up till now she has been successful. Satan hates his daughter with a passion for she is one of the few, if she chooses to do so that can actually kill him. He also hates her because she reminds him of his dead wife Aeriela because she looks just like her. He abused her for years in many ways before she managed to escape.  <br />
<br />
Today, she is doing good and helping others. She loves children and loves caring for them. She has made a good life for herself living in peace in a small village called Nebroc. Nebroc is a very peaceful peace it is there she has met a man who is a werewolf and they fell in love with one another. It is there wedding day and she is wearing a beautiful blue dress with gold trim, she is wearing a golden tiara with different color stones that ranged from amethysist crystals to rose quarts, to floruite and citrite. The tiara sparkled as the light hit it. As the preacher came out he could see that Cecilia Rose was quiet pregnant and looked to be no more then 5 months along. She was pregnant with twin girls and she wanted to marry him before they were born. Cecilia was nervous she knew her father was still hunting for her and knew trouble was coming soon. To her surprise they got through the whole wedding before the trouble came. <br />
<br />
It was on their hunny moon that her fathers men found them. They managed to kill her new husband, but Cecilia managed to kill them she began to run again. She ran outside and took flight in her angel form that she got from her mother and began to head as far away from Nebroc as she could for their safety. She knew now that her father and his men would not only be after her but her children.<br />
<br />
She wondered who she would come across in her travels and wondered if they dared to be on her side or her fathers. She knew only time would tell.<br />
<br />
<br />
<br />
<br />
Note: character sheet coming soon for Cecilia Rose]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Oh my...]]></title>
			<link>http://animeforum.org/thread-8.html</link>
			<pubDate>Thu, 04 Feb 2010 16:45:49 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-8.html</guid>
			<description><![CDATA[<span style="color: darkcyan;">I am having problems. It seems this place is not quite active yet. I really would like to role play but with lack of other members I have to wonder whether or not it would be successful or active.<br />
<br />
So... if I were to make a role play, maybe one relating to Bleach, would anyone join?</span>]]></description>
			<content:encoded><![CDATA[<span style="color: darkcyan;">I am having problems. It seems this place is not quite active yet. I really would like to role play but with lack of other members I have to wonder whether or not it would be successful or active.<br />
<br />
So... if I were to make a role play, maybe one relating to Bleach, would anyone join?</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Support Sites]]></title>
			<link>http://animeforum.org/thread-4.html</link>
			<pubDate>Sun, 31 Jan 2010 21:18:13 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-4.html</guid>
			<description><![CDATA[This is where you can put sites that are supportive of others. A really good support site that that is really good for helping one another is a site that I am also an admin for. The site is called Help This Life.<br />
<br />
the link is: <br />
<a href="http://www.HelpThisLife.com" target="_blank">http://www.HelpThisLife.com</a>]]></description>
			<content:encoded><![CDATA[This is where you can put sites that are supportive of others. A really good support site that that is really good for helping one another is a site that I am also an admin for. The site is called Help This Life.<br />
<br />
the link is: <br />
<a href="http://www.HelpThisLife.com" target="_blank">http://www.HelpThisLife.com</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[possible logos]]></title>
			<link>http://animeforum.org/thread-3.html</link>
			<pubDate>Sat, 23 Jan 2010 05:30:58 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-3.html</guid>
			<description><![CDATA[Here are a few sampes of logos i like for people to choose from<br />
<br />
1) is with a font called engraver and it has a white glow light<br />
[attachment=1&#93;<br />
<br />
2) Font is called Tribeca, name in fire<br />
[attachment=2&#93;<br />
<br />
i am going to research more tomorrow i am just really tired right now]]></description>
			<content:encoded><![CDATA[Here are a few sampes of logos i like for people to choose from<br />
<br />
1) is with a font called engraver and it has a white glow light<br />
[attachment=1]<br />
<br />
2) Font is called Tribeca, name in fire<br />
[attachment=2]<br />
<br />
i am going to research more tomorrow i am just really tired right now]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Chacter sheet]]></title>
			<link>http://animeforum.org/thread-2.html</link>
			<pubDate>Tue, 15 Dec 2009 14:44:46 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-2.html</guid>
			<description><![CDATA[Note: If you are transporting another bio from another site please make sure to add the roleplay that the character can be found in thank you. <br />
<br />
Name:<br />
<br />
Age:<br />
<br />
Sex: M/F<br />
<br />
Description: What the character looks like<br />
<br />
Powers: what they can do<br />
<br />
Height:<br />
<br />
Weight:<br />
<br />
Eye Color:<br />
<br />
History:<br />
<br />
Roleplay the character can be found in:]]></description>
			<content:encoded><![CDATA[Note: If you are transporting another bio from another site please make sure to add the roleplay that the character can be found in thank you. <br />
<br />
Name:<br />
<br />
Age:<br />
<br />
Sex: M/F<br />
<br />
Description: What the character looks like<br />
<br />
Powers: what they can do<br />
<br />
Height:<br />
<br />
Weight:<br />
<br />
Eye Color:<br />
<br />
History:<br />
<br />
Roleplay the character can be found in:]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The Rules]]></title>
			<link>http://animeforum.org/thread-1.html</link>
			<pubDate>Tue, 15 Dec 2009 13:29:57 -0500</pubDate>
			<guid isPermaLink="false">http://animeforum.org/thread-1.html</guid>
			<description><![CDATA[1) Be Polite to one another, if you have a problem with someone message them privately or contact the admins and we will help work it out.<br />
<br />
2) No sexual roleplays unless it is in its designated section. We want to try and keep it away from other rps.<br />
<br />
3) If an Rp says this people only that means only them can be in this rp. If you enter an rp section designated for a certain group of people with out permission you will get your first warning immediately.<br />
<br />
4) Characters need to follow the set roleplay character sheet. You may add to it with information you come up with and with pictures. But, the basic's need to be there that have been written down.<br />
<br />
5) You may post a new thread up before posting your character sheet but please put it up as soon as possible so we know who your character is. Thank you.<br />
<br />
6) Have Fun. That is what Roleplay is all about. <br />
<br />
Note: Rules are subject to change if more problems come about and I will add rules to it. A few of this rules that were stated are due to problems seen when the site was open before. These were put in place in hopes to stop problems.]]></description>
			<content:encoded><![CDATA[1) Be Polite to one another, if you have a problem with someone message them privately or contact the admins and we will help work it out.<br />
<br />
2) No sexual roleplays unless it is in its designated section. We want to try and keep it away from other rps.<br />
<br />
3) If an Rp says this people only that means only them can be in this rp. If you enter an rp section designated for a certain group of people with out permission you will get your first warning immediately.<br />
<br />
4) Characters need to follow the set roleplay character sheet. You may add to it with information you come up with and with pictures. But, the basic's need to be there that have been written down.<br />
<br />
5) You may post a new thread up before posting your character sheet but please put it up as soon as possible so we know who your character is. Thank you.<br />
<br />
6) Have Fun. That is what Roleplay is all about. <br />
<br />
Note: Rules are subject to change if more problems come about and I will add rules to it. A few of this rules that were stated are due to problems seen when the site was open before. These were put in place in hopes to stop problems.]]></content:encoded>
		</item>
	</channel>
</rss>