<?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[Team Arsenal Forums - All Forums]]></title>
		<link>http://team-arsenal.com/forums/</link>
		<description><![CDATA[Team Arsenal Forums - http://team-arsenal.com/forums]]></description>
		<pubDate>Tue, 07 Feb 2012 18:23:20 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Tribes Ascend]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=221</link>
			<pubDate>Thu, 18 Aug 2011 02:47:31 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=221</guid>
			<description><![CDATA[If you haven't already, register for the Tribes Ascend beta here:<br />
<a href="http://tribesascend.com/" target="_blank">http://tribesascend.com/</a><br />
<br />
Closed beta starts in September and then will open later in the Fall at an undetermined date.]]></description>
			<content:encoded><![CDATA[If you haven't already, register for the Tribes Ascend beta here:<br />
<a href="http://tribesascend.com/" target="_blank">http://tribesascend.com/</a><br />
<br />
Closed beta starts in September and then will open later in the Fall at an undetermined date.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Switch between NA and EU client]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=216</link>
			<pubDate>Wed, 13 Apr 2011 16:34:08 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=216</guid>
			<description><![CDATA[Here is how to switch between the two clients without needing two separate installs.<br />
<br />
Go to the League of Legends installation folder, go into Air folder, make two copies of the lol.properties file, name one lol-eu.properties and the other lol-us.properties. If you are already on EU servers and wish to change to US servers, open the lol-us.properties file in a text editor, select everything in there and paste the following over it:<br />
<br />
host=beta.lol.riotgames.com<br />
xmpp_server_url=chat.na.lol.riotgames.com<br />
enableTutorialGame=true<br />
lobbyLandingURL=http://www.leagueoflegends.com/pvpnet_landing<br />
ladderURL=http://www.leagueoflegends.com/ladders<br />
storyPageURL=http://www.leagueoflegends.com/story<br />
lq_uri=https://lq.na.lol.riotgames.com/login-queue/rest/queue<br />
<br />
then save it. Now, for those that have the US version and wish to change to EU, open the lol-eu.properties file in a text editor and select everything in it then paste the following over:<br />
<br />
host=prod.eu.lol.riotgames.com<br />
xmpp_server_url=chat.eu.lol.riotgames.com<br />
lq_uri=https://lq.eu.lol.riotgames.com/login-queue/rest/queue<br />
<br />
then save. Now all that remains is to make two bat files, one for each server. Go up a level, into the League of Legends installation folder, and create two text files with the extension bat. Name one LoL-EU.bat and the other LoL-US.bat. Open the LoL-EU.bat in a text editor and put in the following:<br />
<br />
@echo off<br />
cd C:\Riot Games\League of Legends\Air<br />
del lol.properties<br />
copy lol-eu.properties lol.properties<br />
cd C:\Riot Games\League of Legends\<br />
start lol.launcher.exe<br />
exit<br />
<br />
What this does, pretty obvious, is delete the current lol.properties file, copy over from the EU version and start the launcher. The path of the files might differ, depending on where you have your League of Legends game installed. Save the file, then open up the one named LoL-US.bat and fill it with the following:<br />
<br />
@echo off<br />
cd C:\Riot Games\League of Legends\Air<br />
del lol.properties<br />
copy lol-us.properties lol.properties<br />
cd C:\Riot Games\League of Legends\<br />
start lol.launcher.exe<br />
exit<br />
<br />
Save and send a shortcut to each bat file to your desktop or launchbar or quickbar if you prefer.<br />
<br />
Also, if you're like me and like the game to launch with just one click, there's a small modification you can do so you don't have to click the Play button on the launcher.<br />
<br />
Go to C:\Riot Games\League of Legends\html\js or the place where you installed the game, if not following the default path, and make a backup copy of the file main.js, then open it in your text editor. On line 176 add a new line with the following:<br />
<br />
Launcher.play();<br />
<br />
and save. What this will do is just launch the actual game without you needing to click the play button on the launcher, right after the ready check for the servers is completed and the version of the game is checked. If your editor does not number the lines, look for the line:<br />
<br />
if (serverOnline == 1) {<br />
<br />
and add the new line right after that.]]></description>
			<content:encoded><![CDATA[Here is how to switch between the two clients without needing two separate installs.<br />
<br />
Go to the League of Legends installation folder, go into Air folder, make two copies of the lol.properties file, name one lol-eu.properties and the other lol-us.properties. If you are already on EU servers and wish to change to US servers, open the lol-us.properties file in a text editor, select everything in there and paste the following over it:<br />
<br />
host=beta.lol.riotgames.com<br />
xmpp_server_url=chat.na.lol.riotgames.com<br />
enableTutorialGame=true<br />
lobbyLandingURL=http://www.leagueoflegends.com/pvpnet_landing<br />
ladderURL=http://www.leagueoflegends.com/ladders<br />
storyPageURL=http://www.leagueoflegends.com/story<br />
lq_uri=https://lq.na.lol.riotgames.com/login-queue/rest/queue<br />
<br />
then save it. Now, for those that have the US version and wish to change to EU, open the lol-eu.properties file in a text editor and select everything in it then paste the following over:<br />
<br />
host=prod.eu.lol.riotgames.com<br />
xmpp_server_url=chat.eu.lol.riotgames.com<br />
lq_uri=https://lq.eu.lol.riotgames.com/login-queue/rest/queue<br />
<br />
then save. Now all that remains is to make two bat files, one for each server. Go up a level, into the League of Legends installation folder, and create two text files with the extension bat. Name one LoL-EU.bat and the other LoL-US.bat. Open the LoL-EU.bat in a text editor and put in the following:<br />
<br />
@echo off<br />
cd C:\Riot Games\League of Legends\Air<br />
del lol.properties<br />
copy lol-eu.properties lol.properties<br />
cd C:\Riot Games\League of Legends\<br />
start lol.launcher.exe<br />
exit<br />
<br />
What this does, pretty obvious, is delete the current lol.properties file, copy over from the EU version and start the launcher. The path of the files might differ, depending on where you have your League of Legends game installed. Save the file, then open up the one named LoL-US.bat and fill it with the following:<br />
<br />
@echo off<br />
cd C:\Riot Games\League of Legends\Air<br />
del lol.properties<br />
copy lol-us.properties lol.properties<br />
cd C:\Riot Games\League of Legends\<br />
start lol.launcher.exe<br />
exit<br />
<br />
Save and send a shortcut to each bat file to your desktop or launchbar or quickbar if you prefer.<br />
<br />
Also, if you're like me and like the game to launch with just one click, there's a small modification you can do so you don't have to click the Play button on the launcher.<br />
<br />
Go to C:\Riot Games\League of Legends\html\js or the place where you installed the game, if not following the default path, and make a backup copy of the file main.js, then open it in your text editor. On line 176 add a new line with the following:<br />
<br />
Launcher.play();<br />
<br />
and save. What this will do is just launch the actual game without you needing to click the play button on the launcher, right after the ready check for the servers is completed and the version of the game is checked. If your editor does not number the lines, look for the line:<br />
<br />
if (serverOnline == 1) {<br />
<br />
and add the new line right after that.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battlefield Play4Free Beta Key Giveaway]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=215</link>
			<pubDate>Wed, 23 Mar 2011 03:56:58 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=215</guid>
			<description><![CDATA[I'm giving away a couple of Battlefield Play4Free keys if anyone is interested: <a href="http://isaaclean.com/gaming/battlefield-play4free-beta-key-giveaway" target="_blank">http://isaaclean.com/gaming/battlefield-...y-giveaway</a>]]></description>
			<content:encoded><![CDATA[I'm giving away a couple of Battlefield Play4Free keys if anyone is interested: <a href="http://isaaclean.com/gaming/battlefield-play4free-beta-key-giveaway" target="_blank">http://isaaclean.com/gaming/battlefield-...y-giveaway</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[BFH Active?]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=214</link>
			<pubDate>Tue, 22 Mar 2011 17:26:55 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=214</guid>
			<description><![CDATA[Just wondering if any of you guys are BFH active?]]></description>
			<content:encoded><![CDATA[Just wondering if any of you guys are BFH active?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[yoyoyo]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=212</link>
			<pubDate>Fri, 04 Feb 2011 10:57:30 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=212</guid>
			<description><![CDATA[repost: hello gents, what do you guys play noweredays? are any of you in battlefield P4F beta?]]></description>
			<content:encoded><![CDATA[repost: hello gents, what do you guys play noweredays? are any of you in battlefield P4F beta?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Superbowl]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=211</link>
			<pubDate>Sat, 29 Jan 2011 05:43:46 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=211</guid>
			<description><![CDATA[Bang's <span style="color: #006400;"><span style="font-weight: bold;">Packers</span></span> vs.<span style="color: #FFA500;"><span style="font-weight: bold;"> Pittsburgh</span></span> Steelers. Who's going to win?? ( I'm pretty sure about Blitz and Gunner's picks <img src="images/smilies/dodgy.gif" style="vertical-align: middle;" border="0" alt="Dodgy" title="Dodgy" /> )]]></description>
			<content:encoded><![CDATA[Bang's <span style="color: #006400;"><span style="font-weight: bold;">Packers</span></span> vs.<span style="color: #FFA500;"><span style="font-weight: bold;"> Pittsburgh</span></span> Steelers. Who's going to win?? ( I'm pretty sure about Blitz and Gunner's picks <img src="images/smilies/dodgy.gif" style="vertical-align: middle;" border="0" alt="Dodgy" title="Dodgy" /> )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Website Update #4]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=208</link>
			<pubDate>Mon, 03 Jan 2011 07:48:48 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=208</guid>
			<description><![CDATA[<ul>
	<li>Reinforced spam bot security on frontpage and forums</li>
	<li>Forums upgraded for security purposes</li>
	<li>Donate button added on the frontpage. Donate to support the clan!</li>
	<li>Shoutbox installed on the forum index</li>
	<li>Changed logo on forums to match the logo on the frontpage</li>
</ul><a class="wordbb-full-post" href="http://team-arsenal.com/website-news/website-update-4" title="Website Update #4"><br/><strong>View this post on the frontpage!</strong></a>]]></description>
			<content:encoded><![CDATA[<ul>
	<li>Reinforced spam bot security on frontpage and forums</li>
	<li>Forums upgraded for security purposes</li>
	<li>Donate button added on the frontpage. Donate to support the clan!</li>
	<li>Shoutbox installed on the forum index</li>
	<li>Changed logo on forums to match the logo on the frontpage</li>
</ul><a class="wordbb-full-post" href="http://team-arsenal.com/website-news/website-update-4" title="Website Update #4"><br/><strong>View this post on the frontpage!</strong></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Forum Upgrade - 1/2/11]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=207</link>
			<pubDate>Sun, 02 Jan 2011 17:26:37 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=207</guid>
			<description><![CDATA[The Team Arsenal forums will be under going a forum upgrade today at 7:00 PM (PST) to update security and prepare for plugin installation.<br />
<br />
You may not be able to access the forums for at most 30 minutes after the forum upgrade begins.]]></description>
			<content:encoded><![CDATA[The Team Arsenal forums will be under going a forum upgrade today at 7:00 PM (PST) to update security and prepare for plugin installation.<br />
<br />
You may not be able to access the forums for at most 30 minutes after the forum upgrade begins.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Happy New Years]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=206</link>
			<pubDate>Sat, 01 Jan 2011 19:14:33 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=206</guid>
			<description><![CDATA[Dropping in to say happy new years!!!!!!]]></description>
			<content:encoded><![CDATA[Dropping in to say happy new years!!!!!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[OMFG wants a funwar against you]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=202</link>
			<pubDate>Tue, 14 Dec 2010 21:52:41 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=202</guid>
			<description><![CDATA[Hey, I know you're not very active in BFH anymore, but maybe you'd like to fight a funwar against us? I remember a clanwar during the BadenCup with my old clan against you guys. It was really nice!<br />
<br />
<br />
Clan Name: Ossum Men From Germany<br />
Match Type: Scrim<br />
Description: 6vs6 either on our EliottNess server or on your i3D Server <img src="images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" /><br />
Open Time Period: We are ready when you are (we'll just have to dicuss the time, because of the time difference)<br />
Clan Origin: Germany<br />
Website: <a href="http://www.battlefieldheroes.com/en/groups/63479" target="_blank">http://www.battlefieldheroes.com/en/groups/63479</a><br />
Contact: xfire: thefallencaptainamerica<br />
<br />
So if you're interested, you have my xfire. we would be really happy <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
<br />
Sincerely,<br />
Captain_America]]></description>
			<content:encoded><![CDATA[Hey, I know you're not very active in BFH anymore, but maybe you'd like to fight a funwar against us? I remember a clanwar during the BadenCup with my old clan against you guys. It was really nice!<br />
<br />
<br />
Clan Name: Ossum Men From Germany<br />
Match Type: Scrim<br />
Description: 6vs6 either on our EliottNess server or on your i3D Server <img src="images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" /><br />
Open Time Period: We are ready when you are (we'll just have to dicuss the time, because of the time difference)<br />
Clan Origin: Germany<br />
Website: <a href="http://www.battlefieldheroes.com/en/groups/63479" target="_blank">http://www.battlefieldheroes.com/en/groups/63479</a><br />
Contact: xfire: thefallencaptainamerica<br />
<br />
So if you're interested, you have my xfire. we would be really happy <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
<br />
Sincerely,<br />
Captain_America]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GunZ 2]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=201</link>
			<pubDate>Tue, 14 Dec 2010 04:57:52 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=201</guid>
			<description><![CDATA[It isn't gonna come out for a while, but I'm just sharing this game with you since it looks really interesting.<br />
<a href="http://maiet.tistory.com/6533" target="_blank">http://maiet.tistory.com/6533</a><br />
<br />
I used to play the original GunZ, but I left due to the cheaters (there's way more cheaters than Battlefield Heroes and they have god mode, infinite ammo, and everything...) and due to the really bad networking (you have to memorize each player's ping and lead differently according to how much they're lagging and stuff).<br />
<br />
The concept of the game is really awesome though, but I have to admit you have to be really hardcore to try it. I wouldn't try the original GunZ since the community is pretty much dead (since it's a really really old game) with only hardcore players left and it's really hard to get into the game since you need to know how to use all of the advanced techniques and stuff. Learning all of the techniques takes practice just to learn how to use then, and then even more practice to apply them in battle.<br />
<br />
Here's a really old machinima of the original GunZ: <a href="http://www.youtube.com/watch?v=ndtwyJK4TDM" target="_blank">http://www.youtube.com/watch?v=ndtwyJK4TDM</a><br />
<br />
Here's a video of a clan war: <a href="http://www.youtube.com/watch?v=xeV8VJyEo-w" target="_blank">http://www.youtube.com/watch?v=xeV8VJyEo-w</a>]]></description>
			<content:encoded><![CDATA[It isn't gonna come out for a while, but I'm just sharing this game with you since it looks really interesting.<br />
<a href="http://maiet.tistory.com/6533" target="_blank">http://maiet.tistory.com/6533</a><br />
<br />
I used to play the original GunZ, but I left due to the cheaters (there's way more cheaters than Battlefield Heroes and they have god mode, infinite ammo, and everything...) and due to the really bad networking (you have to memorize each player's ping and lead differently according to how much they're lagging and stuff).<br />
<br />
The concept of the game is really awesome though, but I have to admit you have to be really hardcore to try it. I wouldn't try the original GunZ since the community is pretty much dead (since it's a really really old game) with only hardcore players left and it's really hard to get into the game since you need to know how to use all of the advanced techniques and stuff. Learning all of the techniques takes practice just to learn how to use then, and then even more practice to apply them in battle.<br />
<br />
Here's a really old machinima of the original GunZ: <a href="http://www.youtube.com/watch?v=ndtwyJK4TDM" target="_blank">http://www.youtube.com/watch?v=ndtwyJK4TDM</a><br />
<br />
Here's a video of a clan war: <a href="http://www.youtube.com/watch?v=xeV8VJyEo-w" target="_blank">http://www.youtube.com/watch?v=xeV8VJyEo-w</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Play4Free Beta]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=197</link>
			<pubDate>Tue, 30 Nov 2010 16:21:45 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=197</guid>
			<description><![CDATA[Getting the first post going about the new battlefield to have a place for general first comments about it.<br />
<br />
Got my key this morning, who else got theirs?]]></description>
			<content:encoded><![CDATA[Getting the first post going about the new battlefield to have a place for general first comments about it.<br />
<br />
Got my key this morning, who else got theirs?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Team Arsenal Livestream]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=195</link>
			<pubDate>Sun, 07 Nov 2010 06:19:05 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=195</guid>
			<description><![CDATA[Here is the link for Team Arsenal's various livestreams:<br />
<br />
<a href="http://www.own3d.tv/live/1829" target="_blank">http://www.own3d.tv/live/1829</a> ------- EMS<br />
<a href="http://www.own3d.tv/live/401" target="_blank">http://www.own3d.tv/live/401</a> --------- Peluca<br />
<a href="http://www.own3d.tv/live/6821" target="_blank">http://www.own3d.tv/live/6821</a> -------- Blitz<br />
<a href="http://www.own3d.tv/live/9075" target="_blank">http://www.own3d.tv/live/9075</a> -------- Asa <br />
<a href="http://www.own3d.tv/live/7125" target="_blank">http://www.own3d.tv/live/7125</a> -------- Professor<br />
<a href="http://www.own3d.tv/live/9087" target="_blank">http://www.own3d.tv/live/9087</a> -------- Envy<br />
<a href="http://www.own3d.tv/live/15235" target="_blank">http://www.own3d.tv/live/15235</a> ------- MacGrunt<br />
<a href="http://www.own3d.tv/live/11250" target="_blank">http://www.own3d.tv/live/11250</a> ------- DStealth]]></description>
			<content:encoded><![CDATA[Here is the link for Team Arsenal's various livestreams:<br />
<br />
<a href="http://www.own3d.tv/live/1829" target="_blank">http://www.own3d.tv/live/1829</a> ------- EMS<br />
<a href="http://www.own3d.tv/live/401" target="_blank">http://www.own3d.tv/live/401</a> --------- Peluca<br />
<a href="http://www.own3d.tv/live/6821" target="_blank">http://www.own3d.tv/live/6821</a> -------- Blitz<br />
<a href="http://www.own3d.tv/live/9075" target="_blank">http://www.own3d.tv/live/9075</a> -------- Asa <br />
<a href="http://www.own3d.tv/live/7125" target="_blank">http://www.own3d.tv/live/7125</a> -------- Professor<br />
<a href="http://www.own3d.tv/live/9087" target="_blank">http://www.own3d.tv/live/9087</a> -------- Envy<br />
<a href="http://www.own3d.tv/live/15235" target="_blank">http://www.own3d.tv/live/15235</a> ------- MacGrunt<br />
<a href="http://www.own3d.tv/live/11250" target="_blank">http://www.own3d.tv/live/11250</a> ------- DStealth]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Pick my next champ purchase]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=194</link>
			<pubDate>Fri, 05 Nov 2010 21:29:56 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=194</guid>
			<description><![CDATA[Who should my next champ purchase be?<br />
<br />
More preferred:<br />
olaf<br />
akali<br />
mordekaiser<br />
kennen<br />
xin zhao<br />
<br />
Slightly less preferred but still an option:<br />
sona<br />
vladimir]]></description>
			<content:encoded><![CDATA[Who should my next champ purchase be?<br />
<br />
More preferred:<br />
olaf<br />
akali<br />
mordekaiser<br />
kennen<br />
xin zhao<br />
<br />
Slightly less preferred but still an option:<br />
sona<br />
vladimir]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Happy Birthday Peluca!]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=193</link>
			<pubDate>Sat, 30 Oct 2010 10:47:58 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=193</guid>
			<description><![CDATA[<img src="http://i51.tinypic.com/2zz8dvo.gif" border="0" alt="[Image: 2zz8dvo.gif]" /><br />
<br />
Happy Birthday Bro!]]></description>
			<content:encoded><![CDATA[<img src="http://i51.tinypic.com/2zz8dvo.gif" border="0" alt="[Image: 2zz8dvo.gif]" /><br />
<br />
Happy Birthday Bro!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Savage 2]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=192</link>
			<pubDate>Sun, 24 Oct 2010 05:23:08 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=192</guid>
			<description><![CDATA[This game looks fun, and it seems to be more of a team oriented game. And individual skills as well.<br />
<br />
<a href="http://savage2.com/en/main.php" target="_blank">http://savage2.com/en/main.php</a><br />
^homepage of Savage<br />
<br />
<!-- start: video_youtube_embed --><br />
<object type="application/x-shockwave-flash" class="video_embed" style="width: 450px; height: 366px;" data="http://www.youtube.com/v/adT5rD9J8s4"><param name="movie" value="http://www.youtube.com/v/adT5rD9J8s4" /></object><br />
<!-- end: video_youtube_embed --><br />
<br />
<!-- start: video_youtube_embed --><br />
<object type="application/x-shockwave-flash" class="video_embed" style="width: 450px; height: 366px;" data="http://www.youtube.com/v/fQX-9Lx1_nQ"><param name="movie" value="http://www.youtube.com/v/fQX-9Lx1_nQ" /></object><br />
<!-- end: video_youtube_embed -->]]></description>
			<content:encoded><![CDATA[This game looks fun, and it seems to be more of a team oriented game. And individual skills as well.<br />
<br />
<a href="http://savage2.com/en/main.php" target="_blank">http://savage2.com/en/main.php</a><br />
^homepage of Savage<br />
<br />
<!-- start: video_youtube_embed --><br />
<object type="application/x-shockwave-flash" class="video_embed" style="width: 450px; height: 366px;" data="http://www.youtube.com/v/adT5rD9J8s4"><param name="movie" value="http://www.youtube.com/v/adT5rD9J8s4" /></object><br />
<!-- end: video_youtube_embed --><br />
<br />
<!-- start: video_youtube_embed --><br />
<object type="application/x-shockwave-flash" class="video_embed" style="width: 450px; height: 366px;" data="http://www.youtube.com/v/fQX-9Lx1_nQ"><param name="movie" value="http://www.youtube.com/v/fQX-9Lx1_nQ" /></object><br />
<!-- end: video_youtube_embed -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Happy early birthday (Envy)]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=191</link>
			<pubDate>Tue, 19 Oct 2010 03:01:10 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=191</guid>
			<description><![CDATA[I know what you want<br />
<img src="http://i54.tinypic.com/2zh1p2p.jpg" border="0" alt="[Image: 2zh1p2p.jpg]" />]]></description>
			<content:encoded><![CDATA[I know what you want<br />
<img src="http://i54.tinypic.com/2zh1p2p.jpg" border="0" alt="[Image: 2zh1p2p.jpg]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Recruitment Application]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=190</link>
			<pubDate>Sat, 16 Oct 2010 04:13:09 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=190</guid>
			<description><![CDATA[Name: José Graterol <br />
Age: 18<br />
Reasons for joining: vex and peluca invited me, and i like the ppl in the community<br />
Referrer:vexationz, peluca<br />
Current games: League of Legends, Team Fortress 2<br />
Mumble (VOIP): Yes]]></description>
			<content:encoded><![CDATA[Name: José Graterol <br />
Age: 18<br />
Reasons for joining: vex and peluca invited me, and i like the ppl in the community<br />
Referrer:vexationz, peluca<br />
Current games: League of Legends, Team Fortress 2<br />
Mumble (VOIP): Yes]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Recruitment Application Template ]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=189</link>
			<pubDate>Sat, 16 Oct 2010 03:13:25 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=189</guid>
			<description><![CDATA[If you think you have what it takes to be in Team [A]rsenal then post here and fill out this template!<br />
<br />
<span style="font-weight: bold;">Recruitment Application Template</span>:<br />
Name:<br />
Age:<br />
Reasons for joining:<br />
Referrer:<br />
Current games:<br />
Mumble (VOIP): Yes or no<br />
<br />
Once/if your accepted we will give you an initiate access.. from there you can get our VOIP info.. Come in and get to know everyone..]]></description>
			<content:encoded><![CDATA[If you think you have what it takes to be in Team [A]rsenal then post here and fill out this template!<br />
<br />
<span style="font-weight: bold;">Recruitment Application Template</span>:<br />
Name:<br />
Age:<br />
Reasons for joining:<br />
Referrer:<br />
Current games:<br />
Mumble (VOIP): Yes or no<br />
<br />
Once/if your accepted we will give you an initiate access.. from there you can get our VOIP info.. Come in and get to know everyone..]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Koggles vs Morg in the mid]]></title>
			<link>http://team-arsenal.com/forums/showthread.php?tid=188</link>
			<pubDate>Tue, 12 Oct 2010 13:28:24 +0000</pubDate>
			<guid isPermaLink="false">http://team-arsenal.com/forums/showthread.php?tid=188</guid>
			<description><![CDATA[Just some thoughts of other ways of controlling mid... black pool goes down... harassing pushes her back so hard... wipe there minions... mid stays nuetral<br />
<br />
<a href="http://www.own3d.tv/clgame#/watch/32734" target="_blank">http://www.own3d.tv/clgame#/watch/32734</a><br />
<br />
I know its just 1 game and its not always like this... but just some ideas of skill usage to grow and become better as players. <br />
<br />
I actually wanna try this character again!]]></description>
			<content:encoded><![CDATA[Just some thoughts of other ways of controlling mid... black pool goes down... harassing pushes her back so hard... wipe there minions... mid stays nuetral<br />
<br />
<a href="http://www.own3d.tv/clgame#/watch/32734" target="_blank">http://www.own3d.tv/clgame#/watch/32734</a><br />
<br />
I know its just 1 game and its not always like this... but just some ideas of skill usage to grow and become better as players. <br />
<br />
I actually wanna try this character again!]]></content:encoded>
		</item>
	</channel>
</rss>
