<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SegmentNext &#187; Tutorial</title>
	<atom:link href="http://segmentnext.com/category/guides/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://segmentnext.com</link>
	<description>One Step Ahead!</description>
	<lastBuildDate>Thu, 29 Jul 2010 01:05:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Customize Transformers War For CyberTron Keys &#8216;Controls&#8217;</title>
		<link>http://segmentnext.com/2010/06/24/how-to-customize-transformers-war-for-cybertron-keys-controls/</link>
		<comments>http://segmentnext.com/2010/06/24/how-to-customize-transformers-war-for-cybertron-keys-controls/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 08:50:23 +0000</pubDate>
		<dc:creator>Zawad Iftikhar</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Activision]]></category>
		<category><![CDATA[AutoHotKey]]></category>
		<category><![CDATA[Customize Controls]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[High Moon Studios]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Remap Keyboard Controls]]></category>
		<category><![CDATA[Transformers War For CyberTron]]></category>
		<category><![CDATA[Transformers War For CyberTron Guide]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=8008</guid>
		<description><![CDATA[Transformers War For CyberTron for PC is one of the worst Unreal Engine 3 powered games. Well, worst in a sense, it doesn&#8217;t come close to utilizing the power and features of Unreal Engine 3. It doesn&#8217;t have in game chat feature, which is really sad as it is a multiplayer PC game. Configuration files [...]]]></description>
			<content:encoded><![CDATA[<p>Transformers War For CyberTron for PC is one of the worst Unreal Engine 3 powered games. Well, worst in a sense, it doesn&#8217;t come close to  utilizing the power and features of Unreal Engine 3. It doesn&#8217;t have in game chat feature, which is really sad as it is a <a href="http://segmentnext.com/tag/multiplayer/" target="_blank">multiplayer</a> PC game.</p>
<p>Configuration files can&#8217;t be tweaked as they are encrypted. It is 30 FPS locked but, well optimized. <a href="http://segmentnext.com/2010/06/24/transformers-war-for-cybertron-common-errors-bugs-fixes/" target="_blank">Long list of bugs</a>, and the worst comes in your inability to customize or remap controls on <a href="http://segmentnext.com/tag/pc/" target="_blank">PC</a>. After aggressive negative word of mouth campaign for Modern Warfare 2 by PC community, It is the worst <a href="http://segmentnext.com/tag/activision/" target="_blank">Activision</a>+<a href="http://segmentnext.com/tag/high-moon-studios/" target="_blank">High Moon Studios</a> could come up with.</p>
<p>Anyway few guys on steam forums have found a workaround which enables to remap your keyboard keys in Transformers War For CyberTron using Autohotkey application. Read the detailed <a href="http://segmentnext.com/tag/guide/" target="_blank">guide</a> below to be able to customize and remap your keyboard controls in <a href="http://segmentnext.com/tag/transformers-war-for-cybertron/" target="_blank">Transformers War For CyberTron</a>.</p>
<p><strong>Transformers War For CyberTron Controls Customization Guide</strong></p>
<p>1. You will first need to download AutoHotKey, which is free and can be downloaded from <a href="http://www.autohotkey.com/download/" target="_blank">here</a>.<br />
2. Install AutoHotKey<span id="more-8008"></span>.<br />
3. Open notepad.<br />
4. Create a script (Read the guide below on how you can do that).<br />
5. Save the script as &#8220;NameItAnything.ahk&#8221;. You need to save the text file in which you entered a script in .ahk extension so make sure to change the &#8220;Save as type&#8221; in Notepad to all files so that you can change the extension.<br />
6. Double click the script to activate it.</p>
<p><strong>How to Make Arrow Keys Function as &#8220;WASD&#8221;</strong></p>
<p><code>Up::w<br />
Left::a<br />
Down::s<br />
Right::d<br />
^!s::Suspend ; Press Ctrl+Alt+S to Suspend. Press it again to resume.</code></p>
<p>Just copy the above code, paste it in a text file, and save it in &#8220;.ahk&#8221; extension. You can change these controls to your own liking and execute the script to your own liking.</p>
<p><strong>How to Use AutoHotKey With Multiple Programs</strong><br />
If you want to use autohotkey for multiple programs or use it for multiple games with different binds, you can use this script.</p>
<p><code>#MaxThreadsPerHotkey 3 ; Need this to allow two key press threads to run at same time<br />
#IfWinActive, Transformers: War for Cybertron ; The title of the Program's window<br />
{<br />
XButton1::F<br />
}</code></p>
<p>It means that the application will switch to the binds for Transformers War For CyberTron, when that window is active. If you want to use it for different game or program, just replace Transformers War For CyberTron with the windows title.</p>
<p><strong>Transformers War For CyberTron Default Controls</strong></p>
<blockquote><p><strong>ROBOT</strong><br />
Move: WASD or Arrow Keys<br />
Look: Mouse<br />
Swap Weapons: PGDN/PGUP or Mouse wheel<br />
Aim/Detonate Grenade: Right Mouse Button<br />
Fire: Left Mouse Button<br />
Melee: Middle Mouse or Q<br />
Ability 1: Shift<br />
Ability 2: Control<br />
Jump: Space<br />
Look At: B<br />
Kill Streak (MP): B<br />
Interact, Pick up, Revive: E<br />
Add to Generator: E<br />
Change Form: F<br />
Throw Grenade: G<br />
Detach Turret: G<br />
Reload: R<br />
Scoreboard (MP): Tab<br />
Pause: Escape</p>
<p><strong>CAR</strong><br />
Speed Boost: Right Mouse<br />
Flip: Shift</p>
<p><strong>JET</strong><br />
Speed Boost: Right Mouse<br />
Roll Start: Shift<br />
Hover Up: C<br />
Hover Down: V</p>
<p><strong>Truck</strong><br />
Speed Boost: Right Mouse<br />
Ram: Shift</p>
<p><strong>Tank</strong><br />
Speed Boost: Right Mouse<br />
Quick Turn: Shift</p>
<p>For the vehicle modes, listed commands are only that are different from the robot mode.</p></blockquote>
<p><strong>AutoHotKey Reference Guide</strong></p>
<blockquote><p>The variables for the mouse keys in AHK are:<br />
LButton &#8211; Left mouse button<br />
MButton &#8211; Middle mouse button<br />
RButton &#8211; Right mouse button<br />
XButton1 &#8211; Fourth mouse button<br />
XButton2 &#8211; Fifth mouse button</p></blockquote>
<p><strong>How to Change Mouse Controls With AutoHotKey</strong><br />
<code>LButton::RButton<br />
RButton::LButton</code></p>
<p><strong>How to Make &#8220;F&#8221; Melee and &#8220;C&#8221; Transform</strong><br />
<code>f::MButton<br />
c::f<br />
^!s::Suspend ; Press Ctrl+Alt+S to Suspend. Press it again to resume.</code></p>
<p><strong>Sample Script For Customize Transformers War For CyberTron Controls</strong></p>
<blockquote><p>^!s::Suspend ; Press Ctrl+Alt+S to Suspend. Press it again to resume.<br />
f::MButton ; &#8220;f&#8221; activates melee<br />
LShift::f ; Left Shift activates transform<br />
XButton1::LControl ; Mouse button 4 (forward?) activates ability<br />
XButton2::LShift ; Mouse button 5 (backward?) activates 2nd ability<br />
t::b ; &#8220;t&#8221; activates kill streakes<br />
e::g ; &#8220;e&#8221; throws the grenade<br />
q::e ; &#8220;q&#8221; is the use key</p></blockquote>
<p><strong>Notes</strong><br />
1. Run AutoHotKey as an administrator in Vista and Windows 7 or the keys won&#8217;t work.<br />
2. When writing script, make sure you use lowercase letters.<br />
3. For references visit <a href="http://www.autohotkey.com/">AutoHotKey</a> official site.</p>
<p><strong>Thanks, Guys Who Contributed For This Workaround</strong><br />
DJ Cryotek<br />
Scythik<br />
Sora-Chan<br />
Toon Demon</p>
<p>You can post your own created scripts in comments which will surely help other readers. If you have any issues refer to official AutoHotKey site or this <a href="http://forums.steampowered.com/forums/showthread.php?t=1319047">discussion</a> on steam forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/06/24/how-to-customize-transformers-war-for-cybertron-keys-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Transfer Your Data From Old Xbox 360 to New Xbox 360 Slim</title>
		<link>http://segmentnext.com/2010/06/19/transfer-data-old-xbox360-new-xbox360-slim/</link>
		<comments>http://segmentnext.com/2010/06/19/transfer-data-old-xbox360-new-xbox360-slim/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 01:04:00 +0000</pubDate>
		<dc:creator>rattlesnake</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Harddrive]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Xbox 360 Data Transfer]]></category>
		<category><![CDATA[Xbox 360 Data Transfer Cable]]></category>
		<category><![CDATA[Xbox 360 Slim]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=7954</guid>
		<description><![CDATA[We have been hearing all the exciting stuff about the new slim version of Xbox 360 and Kinetic technology launched by Microsoft at this years E3. Now lets get to something that you need to take care of in case you buy Xbox 360 Slim. It is about how you should transfer your data from [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-7955 alignright" title="360_transfer_kit" src="http://segmentnext.com/wp-content/uploads/360_transfer_kit.jpg" alt="" width="197" height="247" />We have been hearing all the exciting stuff about the new <a href="http://segmentnext.com/2010/06/15/new-slim-xbox-360-price-features-availability/" target="_blank">slim version of Xbox 360</a> and <a href="http://segmentnext.com/2010/06/15/kinect-for-xbox-360-price-features-games/" target="_blank">Kinetic technology</a> launched by Microsoft at this years <a href="http://segmentnext.com/tag/e3-2010/" target="_blank">E3</a>. Now lets get to something that you need to take care of in case you buy <a href="http://segmentnext.com/tag/xbox-360-slim/" target="_blank">Xbox 360 Slim</a>.<br />
It is about how you should transfer your data from your old <a href="http://segmentnext.com/tag/xbox-360/" target="_blank">Xbox 360</a> to the new Xbox 360 Slim. If your data is small enough to be transferred via a USB stick then you are good as both the versions of console do contain a USB port.<br />
But if your data is way out of reach of a USB stick then you should following this <a href="http://segmentnext.com/tag/guide/" target="_blank">guide</a> to transfer your saved games and data from old Xbox 360 to new Xbox 360 Slim.<span id="more-7954"></span></p>
<p><strong>Step 1| Get a USB transfer cable</strong><br />
To transfer large data safely, you need to buy a USB transfer cable that actually connects the console&#8217;s hard drive to the USB port of the destination console.It will cost $19 to buy the whole kit, you can have it from <a href="http://segmentnext.com/tag/microsoft/" target="_blank">Microsoft</a>.</p>
<p><strong>Step 2| Remove the Hard Drives Form the Consoles</strong><br />
Now you need to take out both the hard drives from your consoles.I don&#8217;t think that you are stupid enough that you will take them out with power being on.</p>
<p>Anyway heads up,  switch them off before taking them out.<br />
If you don&#8217;t know how to remove hard drives from your console don&#8217;t worry as it is as simple as removing any hard drive form a computer.</p>
<p>Just open your console and take the device just near the button labeled HDD.You can remove it just by pressing the button on it.</p>
<p><strong>Step 3| Connect the controller</strong><br />
Once you have removed your drives, connect only one controller to the Xbox 360 Slim for the on screen follow up. Now connect your older hard drive with the tool kit and its other port with the USB port of Xbox 360 Slim.</p>
<p><strong>Step 4|Copying Data</strong><br />
Once you have connected the kit and the controller, insert the CD provided with the kit and follow the instructions and your data will be copying in a few minutes time.The process may take from few minutes to more than an hour depending upon the data you have on your hard drive.</p>
<p>Once your data is copied you can unplugged the kit and you are done with the transfer.</p>
<p><strong>FAQS<br />
</strong>1. <strong>What if any error occurs during the transfer?</strong><br />
It is not usual but if any error pops up during the copy, restarting the process may help you.</p>
<p>2. <strong>What about my old saved games?</strong><br />
All the save games you played will be over written, once data transfer is completed.So don&#8217;t play any games before you transfer your old saved games. Or you can back them Up using USB stick.</p>
<p>3. <strong>What about the rental downloaded movies?</strong><br />
Well they wont be transferred so you will have to forget about them.</p>
<p>4. <strong>Is the destination and source Hard Drive&#8217;s size important?</strong><br />
Yes it is.Make sure that the destination hard drive is equal or bigger from the source one.That should not be a problem if you are going with the slim version as it offers a 250 GB hard drive with it.</p>
<p>You can ask any other problem you are facing during the transfer and we will try to resolve the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/06/19/transfer-data-old-xbox360-new-xbox360-slim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Fix Windows 7/UAC2 in Game Black Screenshots</title>
		<link>http://segmentnext.com/2010/06/12/fix-windows-7-uac2-game-black-screenshots/</link>
		<comments>http://segmentnext.com/2010/06/12/fix-windows-7-uac2-game-black-screenshots/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 01:57:56 +0000</pubDate>
		<dc:creator>Zawad Iftikhar</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[Tweak]]></category>
		<category><![CDATA[UAC 2]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=7732</guid>
		<description><![CDATA[Windows 7 has this issue of showing your in game taken screenshots as black due to the different visual color schemes enabled by default. Everytime you take any screenshot while you are playing any game, it will show up as black. Same is the cause when you use your anti cheat tool UAC2, UAC2 shows [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://segmentnext.com/tag/windows-7/" target="_blank">Windows 7</a> has this issue of showing your in game taken screenshots as black due to the different visual color schemes enabled by default. Everytime you take any screenshot while you are playing any game, it will show up as black. Same is the cause when you use your anti cheat tool UAC2, UAC2 shows all screenshots taken during the game as back. So whats the fix ? well its a small <a href="http://segmentnext.com/tag/tweak-guide/" target="_blank">tweak</a>.</p>
<p><strong>Fix Windows 7 in Game Black Screenshots</strong></p>
<p><strong>Step 1</strong><br />
Right click on any game executable you are going to take screenshots in, and go to its Properties.<span id="more-7732"></span><br />
<strong><br />
Step 2</strong><br />
Select &#8220;Compatibility&#8221; tab in Properties.</p>
<p><strong>Step 3 </strong><br />
Now choose &#8220;Disable Visual Themes&#8221;, &#8220;Disable Desktop Compositions&#8221;, and &#8220;Run Program as Administrator&#8221;.</p>
<p><strong>Step 4</strong><br />
Apply the changes and start the game. You have fixed the in game black screenshots for this game.<br />
<img class="aligncenter size-full wp-image-7733" title="Windows 7 Black Screenshots" src="http://segmentnext.com/wp-content/uploads/Win7-Black-Screenshots.jpg" alt="" width="373" height="526" /></p>
<p><strong>Note</strong>: You will have to repeat it for every game.</p>
<p><strong>UAC 2 in Game Black Screenshots Fix</strong></p>
<p><strong>Step 1</strong><br />
Follow the guide above to fix the black screenshots for the specific game, you are going to use UAC 2 for.</p>
<p><strong>Step 2</strong><br />
Right click on UAC 2 executable, and go to its properties.</p>
<p><strong>Step 3</strong><br />
Select &#8220;Compatibility&#8221; tab in Properties.</p>
<p><strong>Step 4</strong><br />
Now choose &#8220;Disable Visual Themes&#8221;, &#8220;Disable Desktop Compositions&#8221;, and &#8220;Run Program as Administrator&#8221;.</p>
<p><strong>Step 5</strong><br />
Apply the changes and that&#8217;s it, UAC 2 will no longer return black screenshots.</p>
<p>What this basically does is, it disables Windows 7 Aero theme which causes the black screenshots issue, and forces the program to run on default color scheme. If this fix doesn&#8217;t work for you somehow, plz don&#8217;t hesitate to write.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/06/12/fix-windows-7-uac2-game-black-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BitComet Tips, Configuration,Speed Hacks For Maximum Download Speed</title>
		<link>http://segmentnext.com/2010/06/03/bitcomet-tips-configuration-speedhacks-maximum-download-speed/</link>
		<comments>http://segmentnext.com/2010/06/03/bitcomet-tips-configuration-speedhacks-maximum-download-speed/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 19:39:04 +0000</pubDate>
		<dc:creator>rattlesnake</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[BitComet]]></category>
		<category><![CDATA[BitComet Download Speed]]></category>
		<category><![CDATA[BitComet Settings]]></category>
		<category><![CDATA[BitComet Speed Hacks]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[High Speed Torrents]]></category>
		<category><![CDATA[Torrent]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=7274</guid>
		<description><![CDATA[Introduction Torrent Client is a software used to download any torrent, that you found via torrent search engines and in case you don&#8217;t know what the torrent is ?, it is a small file which contains all the information to download a file the torrent was made for. Bitcomet (originally named as SimpleBt client) is [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong><br />
Torrent Client is a software used to download any torrent, that you found via <a href="http://segmentnext.com/2010/04/09/high-speed-torrent-sites-and-torrent-search-engines/" target="_blank">torrent search engines</a> and in case you don&#8217;t know what the torrent is ?, it is a small file which contains all the information to download a file the torrent was made for.</p>
<p>Bitcomet (originally named as SimpleBt client) is a controversial but an <img class="alignright size-full wp-image-7314" title="BitComet " src="http://segmentnext.com/wp-content/uploads/bitcomet-logo.gif" alt="BitComet Torrent Client" width="140" height="129" />efficient torrent client among all others.The software has been written in C++ and is available in 52 languages for Windows.In spite of all the criticism,I find this client as one of the best torrent clients available on web today.</p>
<p>BitComet has got multiple interesting features like an built in explorer, it can integrate itself with different browsers for the direct downloads, and it also works as a download manager.</p>
<p>Like other <a href="http://segmentnext.com/tag/torrent/" target="_blank">torrents</a> clients,you need to customize a bit to snap maximum performance out of it depending upon your connection speed.Following tutorial is a step wise guide to demonstrate some tweaks that will surely help you in improving it&#8217;s performance.<span id="more-7274"></span></p>
<p><strong>Step 1| Download &amp; Install</strong><br />
You can download the client from multiple locations but I will recommend that you download the latest version form their official site.Follow some simple steps and the client will be installed on your drive.You can choose any drive to install it.</p>
<p><strong>Step 2| Connection Settings</strong><br />
After installation, navigate to &#8220;Tools&#8221; at the top, and then choose &#8220;Options&#8221;.You can also navigate directly to the destination by pressing &#8220;Ctrl+P&#8221;.Now in connection settings, first thing you should do is adjust the Global upload and download speed.You should choose the upload speed that is maximum 90% of your connection upload speed.<br />
<a href="http://segmentnext.com/wp-content/uploads/BitComet1.jpg"><img class="aligncenter size-medium wp-image-7309" title="BitComet_Connection Settings" src="http://segmentnext.com/wp-content/uploads/BitComet1-300x231.jpg" alt="BitComet Torrent Client" width="300" height="231" /></a><br />
More than that will be exhaustive for your connection and your browsing will get very slow while downloading torrents with low seeders.Next you should select an appropriate listen port.Many ISP&#8217;s nowadays block the default ports of famous torrent clients to save the bandwidth consumption, so choose a random port.</p>
<p><strong>Important:<br />
</strong>Whatever port you choose, it must be forward to have maximum speed using this client.If the respected port is not opened,you download speed will be affected greatly.Green light at the bottom right of main interface will indicate that your respective listen port is open.Yellow light or Grey one indicates that your router is blocking the ports.You can consult portforward.com for more details in this respect.</p>
<p>Once you have selected and opened the respected port,you should keep rest of the settings as such.</p>
<p><strong>Step 3| Task Menu</strong><br />
The click the task button, and you will see various options to regulate your torrent tasks.You can select the simultaneous task limit which is 10 by default.More tasks will overload your connection and all tasks will be affected.I will recommend that you don&#8217;t do more than 5 simultaneous downloads.<br />
<a href="http://segmentnext.com/wp-content/uploads/BitComet2.jpg"><img class="aligncenter size-medium wp-image-7310" title="BitComet_Task Settings" src="http://segmentnext.com/wp-content/uploads/BitComet2-300x201.jpg" alt="BitComet Torrent Client" width="300" height="201" /></a></p>
<p><strong>Step 4| Integration</strong><br />
Now head straight to the Integration tab.Here you can integrate Bitcomet with famous browsers like Firefox and IE.You can choose Bitcomet as your default client for torrent and non torrent downloads.You need to add some extensions to integrate it successfully.Resumeable downloads will be resumed from the last disconnection.<br />
<a href="http://segmentnext.com/wp-content/uploads/BitComet3.jpg"><img class="aligncenter size-medium wp-image-7311" title="BitComet_Integration Settings" src="http://segmentnext.com/wp-content/uploads/BitComet3-300x229.jpg" alt="BitComet Torrent Client" width="300" height="229" /></a></p>
<p><strong>Step 5| Half-Open Limit</strong><br />
I won&#8217;t recommend that you change this default(10) limit until you get the massage of being reaching the half-open limit.Change the limit to 50 or 100 and reboot the system to increase the download speed.<br />
<a href="http://segmentnext.com/wp-content/uploads/BitComet4.jpg"><img class="aligncenter size-medium wp-image-7312" title="BitComet_Half Open Limit Settings" src="http://segmentnext.com/wp-content/uploads/BitComet4-300x232.jpg" alt="BitComet Torrent Client" width="300" height="232" /></a></p>
<p><strong>Step 6| Register yourself<br />
</strong>Last but not the least, register yourself  with them and let your client be logged in during downloads.More you download,more will be your reputation and ultimately you will experience better results.This step is optional but can be useful as it did work for me.</p>
<p>Alternatively you can download this<a href="http://rapidshare.com/files/117298043/BitComet_EvID4226Patch223d-en.rar" target="_blank"> BitComet Speed Hack Patch</a>, which does the magic for you and automatically configures BitComet for maximum download speeds.</p>
<p>These small tips will surely enable you to improve your download speed using Bitcomet as your torrent client. Any confusions or problems? do let us know and we will try to resolve them for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/06/03/bitcomet-tips-configuration-speedhacks-maximum-download-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Step by Step Guide to Setup Ventrilo Private Server</title>
		<link>http://segmentnext.com/2010/03/25/ventrilo-private-server-guide/</link>
		<comments>http://segmentnext.com/2010/03/25/ventrilo-private-server-guide/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 06:05:36 +0000</pubDate>
		<dc:creator>rattlesnake</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Ventrilo]]></category>
		<category><![CDATA[Ventrilo Guide]]></category>
		<category><![CDATA[Ventrilo Private Server Setup]]></category>
		<category><![CDATA[Ventrilo Server Guide]]></category>
		<category><![CDATA[Voice Conferencing]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=6899</guid>
		<description><![CDATA[Ventrilo is a free VoIP client where different users can chat with one another just like a telephone call conference.Ventrilo has gained fame among many gamers out there due to its efficient connectivity and reduced latency during voice chat. If you are not impressed with Teamspeak then you should try this voice conferencing client.You can [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-6902" title="Ventrilo Private Server" src="http://segmentnext.com/wp-content/uploads/ventrilo.jpg" alt="" width="256" height="256" />Ventrilo is a free VoIP client where different users can chat with one another just like a telephone call conference.Ventrilo has gained fame among many gamers out there due to its efficient connectivity and reduced latency during voice chat.<br />
If you are not impressed with Teamspeak then you should try this voice conferencing client.You can setup up your own Ventrilo server on your computer and test its performance.<span id="more-6899"></span><br />
Read the following simple steps to setup up your own Ventrilo server:</p>
<p><strong>Step 1<br />
</strong>Download the Ventrilo server client from their official website.Follow the<a href="http://www.ventrilo.com/dlprod.php?id=101"> link</a> to download the client.Make sure that you download your operating system version of the client;  e.g Windows, Mac-OSx and Linux etc.<br />
Click the &#8220;I Agree&#8221; button at the bottom of the page and your download will start.</p>
<p><strong>Step 2</strong><br />
Now install the downloaded client on your hard drive.You need to press few next buttons and finally the finish button to complete the setup.No configuration is needed during installation.</p>
<p><strong>Step 3<br />
</strong>Now you need to edit the &#8220;VentSrv&#8221; file located in the directory of the installed Ventrilo client.Change the values as you see fit.<br />
e.g:</p>
<blockquote><p>[Server]</p>
<p>Name=Tobi Is a Good Boy<br />
Phonetic=Server<br />
Auth=0<br />
Duplicates=1<br />
AdminPassword=*****<br />
Password=*****<br />
SendBuffer=0<br />
RecvBuffer=0<br />
Diag=0<br />
LogonTimeout=5<br />
CloseStd=1<br />
TimeStamp=0<br />
PingRate=10<br />
ExtraBuffer=0<br />
ChanWidth=0<br />
ChanDepth=0<br />
ChanClients=0<br />
DisableQuit=0<br />
VoiceCodec=0<br />
VoiceFormat=1<br />
SilentLobby=0<br />
AutoKick=0</p></blockquote>
<p><strong>Phonetic</strong> here is the robotic sound.If you don&#8217;t want it the remove it from your file.</p>
<p><strong>Auth </strong>refers to the method used by the users that connect to  your server.If its value is set to &#8220;0&#8243; then everyone can join your server and if set to &#8220;1&#8243; then users will need a password and if it is set to &#8220;2&#8243; then both username and password is required for login.</p>
<p><strong>Duplicate</strong> is for allowing the duplicate usernames.&#8221;o&#8221; means no duplicate name is allowed.<br />
I will suggest that you don&#8217;t change values of &#8220;Send Buffer&#8221; and &#8220;Receive Buffer&#8221; if you don&#8217;t know about them.These values set to  the size of the TCP outbound buffers.</p>
<p><strong>Diag</strong> setting is for toggling the diagnostics for the developers.</p>
<p><strong>CloseStd</strong> setting should be left as 1.It deals with the option for running server as background service.</p>
<p><strong>TimeStamp</strong> is for tracing the time stamps of the messages.If it is turned on then you can easily know the exact time of all the messages through console.</p>
<p><strong>PingRate</strong> is for how often does the server pings the client.If there is any problem then it will be notified to the client in the set value in seconds.It is 10 seconds by default.</p>
<p>Leave the <strong>ExtraBuffer</strong> value as it is as it is more than sufficient by default.</p>
<p><strong>ChanWidth</strong> is to allow the total no. of channels that can be made in the server.</p>
<p><strong>ChanDepth</strong> is for specifying the total no. of sub-channels in the main channel.</p>
<p><strong>ChanClient</strong> is to specify the no. of clients in any channel.</p>
<p>Don&#8217;t change the value of <strong>VoiceCodec</strong> and</p>
<p><strong>VoiceFormat</strong> as the server automatically selects the best available codec from the list.</p>
<p><strong>SilentLobby</strong> is to allow or disable voice in the lobby.</p>
<p><strong>Step 4</strong><br />
Now you need to start your Ventrilo server.Navigate to the the installed directory of Ventrilo server and execute the server file in the directory, simply by clicking the file.A console window will pop up showing your above settings.</p>
<p>This is what you will  have to do to setup a Ventrilo server of your own.</p>
<p><strong>How to connect to a Ventrilo server</strong><br />
To connect to your or any other  Ventrilo server,you need to download and install the Ventrilo client from their <a href="http://www.ventrilo.com/download.php">website.</a>Once you have installed the client,fill out your user name and then fill all the details in connection editor like server IP,password,port etc. Default port no. used is 3784.You can use the same or you can use a different port.</p>
<p><strong>Important</strong><br />
Whatever port you use, it must be forward if you are behind a router.</p>
<p>After filling all the fields click the connect button and you will be  able to join the server.Its that simple, try it out and let us know if  there are any problems faced by you.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/03/25/ventrilo-private-server-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Play StarCraft II Beta Singleplayer Offline</title>
		<link>http://segmentnext.com/2010/03/04/starcraft-2-beta-offline-guide/</link>
		<comments>http://segmentnext.com/2010/03/04/starcraft-2-beta-offline-guide/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 04:29:19 +0000</pubDate>
		<dc:creator>rattlesnake</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Realtime Strategy]]></category>
		<category><![CDATA[Starcraft II]]></category>
		<category><![CDATA[Starcraft II AI Maps]]></category>
		<category><![CDATA[Starcraft II Beta Offline Guide]]></category>
		<category><![CDATA[Starcraft II Beta Offline Mode]]></category>
		<category><![CDATA[Starcraft II Beta Singleplayer]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=6808</guid>
		<description><![CDATA[Wouldn&#8217;t it be amazing to play Starcraft II beta as single player? surely it would be. But is it possible? yes it is, as this simple  guide will help you play Starcraft II beta in offline mode.Now without wasting any further time let us begin with the guide: Step 1 Download the game if you [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-6809" title="StarCraft II" src="http://segmentnext.com/wp-content/uploads/starcraft_2-300x250.jpg" alt="" width="300" height="250" />Wouldn&#8217;t it be amazing to play Starcraft II beta as single player? surely it would be. But is it possible? yes it is, as this simple  guide will help you play Starcraft II beta in offline mode.Now without wasting any further time let us begin with the guide:</p>
<p><strong>Step 1</strong><br />
Download the game if you don&#8217;t have it already.You can try various torrents like <a href="http://thepiratebay.org/torrent/5400425/Starcraft.2_Beta.PLUS.LazyLaunch.PLUS.MAPS">this one</a>.If you have the game installed on your PC then download this <a href="http://www.mediafire.com/?sharekey=9d687fbe6a491960ab1eab3e9fa335cabc8fec8b68b94ae3">LazyLauncher</a> patch.<span id="more-6808"></span><br />
Your antivirus might detect a Torjan but the file actually does not contain any.Let the extraction be completed and you will get an executable file after extraction.</p>
<p><strong>Step 2</strong><br />
Now you need to download the AI map pack.You can download it from <a href="http://www.nibbits.com/sc2/maps/">here</a>.Unpack these maps anywhere in your drive.</p>
<p><strong>Step 3</strong><br />
Now download all the difficulties level for the game.You can download one you like:</p>
<p><a href="http://www.mediafire.com/?hjoalmoyyjt">Very Easy</a><br />
<a href="http://www.mediafire.com/?mwtn5k5unif">Easy</a><br />
<a href="http://www.mediafire.com/?mz4ymygnngy">Medium</a><br />
<a href="http://www.mediafire.com/?dzdeznohxzi">Hard</a><br />
<a href="http://www.mediafire.com/?dzdeznohxzi">Very Hard</a><br />
<a href="http://www.mediafire.com/?cdorwymlfmj">Insane</a><br />
<a href="http://www.mediafire.com/?wzwmo2n22wb">Original</a></p>
<p><strong>Step 4</strong><br />
Now launch the game once and let it be updated.After the update is complete,close the game.</p>
<p><strong>Step 5</strong><br />
Now launch the &#8220;LazyLauncher&#8221; you downloaded above. Guide the opened interface to the location where you have extracted the maps earlier.Choose the map of your choice.</p>
<p>Well that&#8217;s it,the game will load and you will be able to play StarCraft II offline with AI.If you are not interested in playing only with AI then wait for the official release of the full game.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/03/04/starcraft-2-beta-offline-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guide to Play Dirt 2 over Hamachi/Tunngle</title>
		<link>http://segmentnext.com/2010/02/26/dirt-2-tunngle-hamachi-guide/</link>
		<comments>http://segmentnext.com/2010/02/26/dirt-2-tunngle-hamachi-guide/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 12:44:38 +0000</pubDate>
		<dc:creator>rattlesnake</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Codemasters]]></category>
		<category><![CDATA[Dirt 2]]></category>
		<category><![CDATA[Dirt 2 Online]]></category>
		<category><![CDATA[Games For Windows Live]]></category>
		<category><![CDATA[GFWL Fix]]></category>
		<category><![CDATA[Hamachi]]></category>
		<category><![CDATA[Hamachi Connection override]]></category>
		<category><![CDATA[Rally Racing]]></category>
		<category><![CDATA[Tunngle]]></category>
		<category><![CDATA[Tunngle Connection Override]]></category>

		<guid isPermaLink="false">http://segmentnext.com/?p=6790</guid>
		<description><![CDATA[I have already covered on How you can play GFW(Games For Windows Live) over Hamachi and Tunngle.This time I am gonna guide you on how you can  play Dirt 2 over Hamachi and Tunngle.Follow these steps and in few minutes you will be playing this racing thriller with your friends without any fuss of Windows [...]]]></description>
			<content:encoded><![CDATA[<p>I have already covered on <a href="http://segmentnext.com/index.php/2009/12/27/teknogods-crack-to-play-gfwgames-for-windows-live-via-hamachi-or-tunngle/">How you can play GFW(Games For Windows Live) over Hamachi and Tunngle.</a>This time I am<img class="alignright size-medium wp-image-843" title="dirt-2_5" src="http://segmentnext.com/wp-content/uploads/2009/02/dirt1-300x168.jpg" alt="" width="300" height="168" /> gonna guide you on how you can  play Dirt 2 over Hamachi and Tunngle.Follow these steps and in few minutes you will be playing this racing thriller with your friends without any fuss of Windows Live.</p>
<p><strong>Step 1|Download the Multiplayer Crack</strong><br />
First you need a crack made by TeknoGods, download this crack via this <a href="http://www.mediafire.com/?tazgbyomjzz">link</a>.The crack contains a loader and two registry files, one is for Hamachi and other is for Tunngle.</p>
<p><strong>Important</strong>:<br />
If you have any loader previous than this version than you will have to delete the old dll files &#8220;App_Init_dlls&#8221;<span id="more-6790"></span></p>
<p><strong>Step 2|Extract the Files</strong><br />
You can extract these files anywhere in your hard drive and it is not necessary at all that you place these files in your game folder. Double click the respected registry file i.e if you are a Hacmachi user use “ConnectionOverrideHamachi” and if you are a Tunngle user than use the other file named “ConnectionOverrideTunngle”. Keep both the files; the loader file and the registry file in the same folder.</p>
<p><strong>Step3|For Host</strong><br />
Now launch Dirt 2. If you are hosting the game then all you need to do is just host and wait for your other friends to join.</p>
<p><strong>Step 4|Joining Game</strong><br />
Those who want to connect to your hosted game need to minimize their game by pressing “Alt+Tab” key and start the TeknoGods loader(DLLLoad) file present in the files you extracted from teknogods crack earlier.You can also start the loader first and then launch the game but I will suggest that you do it afterward by  minimizing your game.</p>
<p><strong>Step 5|Establishing Connection</strong><br />
Now before you connect with the host in the lobby,you need to press F12 for a successful connection.This actually overrides the ping limit set by developers and allows you to connect by creating a fake ping.</p>
<p><strong>Step 6|Turn Off Fake Pinger</strong><br />
Once you are connected press F12 again (which turns off the ping faker) so that it won’t eat up your resources and you experience less lag without any crashes.</p>
<p>Have fun playing one of best rally games of the year and if you face problems? feel free to ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://segmentnext.com/2010/02/26/dirt-2-tunngle-hamachi-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
