<?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>maceman.info</title>
	<atom:link href="http://maceman.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://maceman.info</link>
	<description>The home page of MaceMan316</description>
	<lastBuildDate>Tue, 24 Aug 2010 21:21:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Screen capture drivers</title>
		<link>http://maceman.info/2010/08/24/screen-capture-drivers/</link>
		<comments>http://maceman.info/2010/08/24/screen-capture-drivers/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 21:19:37 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[broadcast]]></category>
		<category><![CDATA[cam]]></category>
		<category><![CDATA[cap]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[directshow]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[screen share]]></category>
		<category><![CDATA[starcraft]]></category>
		<category><![CDATA[starcraft 2]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=102</guid>
		<description><![CDATA[In the past I&#8217;ve found myself wanting to know of some DirectShow screen capture drivers. I would use these for sharing my desktop on web cam programs, video streaming programs, streaming Starcraft 2, and so on. I have list of all the (free) ones I know of so far. VH Screen Capture Driver UScreenCapture ManyCam [...]]]></description>
			<content:encoded><![CDATA[<p>In the past I&#8217;ve found myself wanting to know of some DirectShow screen capture drivers. I would use these for sharing my desktop on web cam programs, video streaming programs, streaming Starcraft 2, and so on. I have list of all the (free) ones I know of so far.</p>
<ul>
<li>VH Screen Capture Driver</li>
<li>UScreenCapture</li>
<li>ManyCam</li>
</ul>
<p>VLC Media Player and Windows Media Encoder 9 can also be used for screen broadcasting, but they do not have input drivers so the output can&#8217;t be fed into another program.<br />
Additionally, CamStudio can be used to record the screen (but not broadcast), and Skype can be used the broadcast the screen to a single person.</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/08/24/screen-capture-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen sharing with VLC media player</title>
		<link>http://maceman.info/2010/08/11/screen-sharing-with-vlc-media-player/</link>
		<comments>http://maceman.info/2010/08/11/screen-sharing-with-vlc-media-player/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 13:12:52 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=94</guid>
		<description><![CDATA[I have created a batch script that will share your screen with others. The disadvantage is you will need to allow inbound connections (why port forwarding is sometimes necessary). start VLC -I dummy screen:// :screen-fps=4.000000 :screen-caching=300 :sout=#transcode{venc=ffmpeg{keyint=40,vt=40,hurry-up},vcodec=WMV2,vb=150,fps=4,height=480,acodec=none}:http{mux=asf,dst=:PORT/} :no-sout-rtp-sap :no-sout-standard-sap :sout-keep Change PORT to the desired port. It may be any unused port above 1024. Examples [...]]]></description>
			<content:encoded><![CDATA[<p>I have created a batch script that will share your screen with others. The disadvantage is you will need to allow inbound connections (why port forwarding is sometimes necessary).</p>
<p><code>start VLC -I dummy screen:// :screen-fps=4.000000 :screen-caching=300 :sout=#transcode{venc=ffmpeg{keyint=40,vt=40,hurry-up},vcodec=WMV2,vb=150,fps=4,height=480,acodec=none}:http{mux=asf,dst=:<strong>PORT</strong>/} :no-sout-rtp-sap :no-sout-standard-sap :sout-keep</code></p>
<ol>
<li>Change PORT to the desired port. It may be any unused port above 1024. Examples include 2199 and 8080. </li>
<li>
Put the code into a text file in your VLC directory called <strong>stream.cmd</strong>. </li>
<li>
Double click to run. </li>
<li>
Access the stream with WMP10 or VLC at http://<strong>YOUR_IP</strong>:<strong>PORT</strong>/ </li>
<li>
Replace YOUR_IP and PORT with your current IP address and your chosen port. An easy way to find your current IP address is by going to <a href="http://ipchicken.com">ipchicken.com</a> or <a href="http://whatsmyip.org">whatsmyip.org</a></li>
</ol>
<p>This will broadcast your screen at 4 fps at 150 kilobits/second. It can be opened in any program that can display wmv2/asf/http. Example programs include Windows Media Player 10 and VLC. If need be, you can change height (the vertical resolution in pixels) and vb (the bitrate in kilobits/second) as necessary. Note that the width is inferred from the height. This batch file could potentially be modified to run on operating systems other than Windows. I use this often to share my screen with friends, and to allow friends to watch me play Starcraft 2. Note for Starcraft 2 in particular, the game will need to be in Windowed-fullscreen or windowed mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/08/11/screen-sharing-with-vlc-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World of Warcraft background FPS</title>
		<link>http://maceman.info/2010/05/23/world-of-warcraft-background-fps/</link>
		<comments>http://maceman.info/2010/05/23/world-of-warcraft-background-fps/#comments</comments>
		<pubDate>Sun, 23 May 2010 14:23:15 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[anymore]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[fps]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[lag]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[maxfps]]></category>
		<category><![CDATA[maxfpsbk]]></category>
		<category><![CDATA[maximum]]></category>
		<category><![CDATA[minimized]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[used]]></category>
		<category><![CDATA[world of warcraft]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=88</guid>
		<description><![CDATA[In a not-so-recent patch, Blizzard increased the background FPS of World of Warcraft from ~4 to 30. They also changed it so this FPS will take effect when the window is not in focus. Previously, it only activated when minimized. There are many potential reasons to be unsatisfied with the first change. Lets say you [...]]]></description>
			<content:encoded><![CDATA[<p>In a not-so-recent patch, Blizzard increased the background FPS of World of Warcraft from ~4 to 30. They also changed it so this FPS will take effect when the window is not in focus. Previously, it only activated when minimized. There are many potential reasons to be unsatisfied with the first change. Lets say you have a weak computer and can&#8217;t multitask with WoW anymore.</p>
<p>To change the background FPS, you may either change the maxfpsbk value in the config.wtf file or with a line of text in-game.</p>
<p>Type<br />
<strong><code>/console maxfpsbk 8</code></strong><br />
to set the maximum background FPS to 8. This can be any integer, so you can set it higher than 30 if you wish.<br />
(Note: It cannot be set lower than 8. If you try to set it lower than 8, it will still run at 8.)</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/05/23/world-of-warcraft-background-fps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unreal Tournament 3 &#8220;Precaching&#8221; issue</title>
		<link>http://maceman.info/2010/04/25/unreal-tournament-3-precaching/</link>
		<comments>http://maceman.info/2010/04/25/unreal-tournament-3-precaching/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 11:07:14 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[-nomoviestartup]]></category>
		<category><![CDATA[3]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[fullscreenmovie]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[pre]]></category>
		<category><![CDATA[pre-caching]]></category>
		<category><![CDATA[precaching]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[startupmovies]]></category>
		<category><![CDATA[tournament]]></category>
		<category><![CDATA[unreal]]></category>
		<category><![CDATA[up]]></category>
		<category><![CDATA[ut]]></category>
		<category><![CDATA[ut3]]></category>
		<category><![CDATA[utengine.ini]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=85</guid>
		<description><![CDATA[For the longest time, I couldn&#8217;t figure out what was wrong with my Unreal Tournament 3 setup. Every time I entered a game of any type, the loading screen wouldn&#8217;t appear. Instead, it would say &#8220;Precaching&#8221; in red with a black background. I figured out the reason why it was doing this is because I [...]]]></description>
			<content:encoded><![CDATA[<p>For the longest time, I couldn&#8217;t figure out what was wrong with my Unreal Tournament 3 setup. Every time I entered a game of any type, the loading screen wouldn&#8217;t appear. Instead, it would say &#8220;Precaching&#8221; in red with a black background. I figured out the reason why it was doing this is because I had the &#8220;-nomoviestartup&#8221; command line option set. &#8220;-nomoviestartup&#8221; eliminates movies of all types, not just the startup movies. Loading screens are considered movies. There are campaign movies, too, and you&#8217;ll miss out on those with the command line switch.</p>
<p>There is a way to turn off the start-up movies in a non-destructive way. Find your &#8220;<strong>My Documents\My Games\Unreal Tournament 3\UTGame\Config\UTEngine.ini</strong>&#8221; file. Open it with a text editor, such as notepad, and search for<strong> </strong>&#8220;<strong>[FullScreenMovie]</strong>&#8220;. Directly below it, add semicolons before all the sections that say &#8220;StartupMovies&#8221;. It should look like this:</p>
<blockquote><p><code>[FullScreenMovie]<br />
;StartupMovies=Copyright_PC<br />
;StartupMovies=EpicLogo<br />
;StartupMovies=MidwayLogo<br />
;StartupMovies=UE3_logo<br />
;StartupMovies=Nvidia_PC<br />
;StartupMovies=Intel_Duo_Logo<br />
;StartupMovies=UT_loadmovie1</code></p></blockquote>
<p>Congratulations. You have disabled start-up movies and/or restored your loading screens!</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/04/25/unreal-tournament-3-precaching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NVIDIA control panel &#8220;dualview&#8221; problem</title>
		<link>http://maceman.info/2010/03/27/nvidia-control-panel-dualview-problem/</link>
		<comments>http://maceman.info/2010/03/27/nvidia-control-panel-dualview-problem/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 07:18:51 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[dualview]]></category>
		<category><![CDATA[NVIDIA]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[trouble]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=77</guid>
		<description><![CDATA[Is the &#8220;Dualview&#8221; option not showing on your NVIDIA control panel? Short answer: Restart your computer. Explanation: I have two monitors that I was trying use with my computer, and I encountered a particular problem. I&#8217;m running Windows XP Pro SP3 with NVIDIA graphics. I tried to set up the monitors in a primary/secondary configuration, [...]]]></description>
			<content:encoded><![CDATA[<p>Is the &#8220;Dualview&#8221; option not showing on your NVIDIA control panel?</p>
<p>Short answer: Restart your computer.</p>
<p>Explanation: I have two monitors that I was trying use with my computer, and I encountered a particular problem. I&#8217;m running Windows XP Pro SP3 with NVIDIA graphics. I tried to set up the monitors in a primary/secondary configuration, allowing each monitor to have a different resolution, and my task bar to fill one screen. I had a problem because despite the help literature describing the option, I had no ability to select &#8220;Dualview&#8221;. After searching the web for a solution, some more brutal than others, I tried a simple one. It was suggested that I restart my computer. The reason being that the NVIDIA control panel or my operating system can&#8217;t detect both my monitors at a low level unless the operating system is started with both of the monitors connected. Since I didn&#8217;t plug in the monitor until after the system was up and running, it hadn&#8217;t been started with both monitors. Restarting the computer fixed this problem because it allowed the operating system to detect both monitors at start up.</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/03/27/nvidia-control-panel-dualview-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review of Logitech Classic Keyboard 200 USB</title>
		<link>http://maceman.info/2010/03/02/review-of-logitech-classic-keyboard-200-usb/</link>
		<comments>http://maceman.info/2010/03/02/review-of-logitech-classic-keyboard-200-usb/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 23:36:41 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=73</guid>
		<description><![CDATA[This is a brief review for the Logitech Classic Keyboard 200 USB. Pros: Compact. Only has one &#8220;Windows&#8221; key, the margins of the keyboard are small, and the &#8220;Home End Insert Delete&#8221; row is 2&#215;3 instead of 3&#215;2. It doesn&#8217;t take long to get used to. Responsive, relatively quiet keys. USB. Has the ability to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a brief review for the Logitech Classic Keyboard 200 USB.</p>
<p>Pros:</p>
<ul>
<li>Compact. Only has one &#8220;Windows&#8221; key, the margins of the keyboard are small, and the &#8220;Home End Insert Delete&#8221; row is 2&#215;3 instead of 3&#215;2. It doesn&#8217;t take long to get used to.</li>
<li>Responsive, relatively quiet keys.</li>
<li>USB.</li>
<li>Has the ability to press several keys simultaneously. It&#8217;s no gaming keyboard, but it&#8217;s close.</li>
<li>Cheap</li>
</ul>
<p>Cons:</p>
<ul>
<li>Sometimes doesn&#8217;t get recognized by my BIOS unless it&#8217;s the only USB device. Note that it always works once the OS starts. I&#8217;m not sure if this is a problem with my computer or the keyboard.</li>
<li>No built-in USB hub.</li>
<li>No built-in volume control (note: this could be a pro for some).</li>
<li>Keys aren&#8217;t loud, but they aren&#8217;t silent.</li>
</ul>
<p>Overall, I give this keyboard a 4/5. Definitely a good buy if you are looking for a minimalistic keyboard that isn&#8217;t huge. I use it for gaming all the time and it works fine for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/03/02/review-of-logitech-classic-keyboard-200-usb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Idea for VoIP program</title>
		<link>http://maceman.info/2010/03/02/idea-for-voip-program/</link>
		<comments>http://maceman.info/2010/03/02/idea-for-voip-program/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 23:16:51 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=69</guid>
		<description><![CDATA[My idea of a dream VoIP program would have a lot in common with popular VoIP programs. Server-side presence information, firewall transversal, video, etc. I&#8217;d like a program that degrades gracefully. Popular programs try, but it seems that transmitting video can interfere with graceful degradation. Also, the lower limit on bandwidth and jitter is too [...]]]></description>
			<content:encoded><![CDATA[<p>My idea of a dream VoIP program would have a lot in common with popular VoIP programs. Server-side presence information, firewall transversal, video, etc. I&#8217;d like a program that degrades gracefully. Popular programs try, but it seems that transmitting video can interfere with graceful degradation. Also, the lower limit on bandwidth and jitter is too high for my preference with many of these programs. I&#8217;d like a program that could transmit video and audio in conditions as low as dial-up. I&#8217;d like it to have an auto-reconnect preference to resist connection drops. I&#8217;d like a quality setting to allow the user to throttle their bandwidth usage. Maybe I&#8217;ll start a project like this someday. One can dream, eh?</p>
<p>Recap of my dream VoIP program:</p>
<ul>
<li>Text chat</li>
<li>Low-latency audio</li>
<li>Video</li>
<li>Group chat, group audio, and group video calls</li>
<li>Free internet-to-internet calls</li>
<li>Robust back-end network</li>
<li>Peer-to-peer for most operations (increases efficiency)</li>
<li>Firewall transversal, when necessary</li>
<li>File transfers</li>
<li>Username-based identification. No confusing IPs or ports to work with</li>
<li>Optional offline LAN-only mode</li>
<li>Graceful quality degradation</li>
<li>Audio and video usable in dial-up or GPRS conditions</li>
<li>User-configurable quality setting</li>
<li>Optional auto-reconnection for dropped calls</li>
<li>Silent reconnection. The program stays hidden when it&#8217;s not called by the user. No pop-ups saying &#8220;THE NETWORK CONNECTION WAS LOST&#8221;.</li>
<li>Extreme resilience to packet loss and jitter. I&#8217;d like audio to work in 50-80% packet loss. Maybe some extreme forward error correction would do the job.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2010/03/02/idea-for-voip-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of free games</title>
		<link>http://maceman.info/2009/10/29/list-of-free-games/</link>
		<comments>http://maceman.info/2009/10/29/list-of-free-games/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 21:53:33 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=58</guid>
		<description><![CDATA[Here&#8217;s a quick list of free full games I know of. FPS Warsow (http://www.warsow.net/) OpenArena (http://www.openarena.ws/) UrbanTerror (http://www.urbanterror.net/) Quake Live (http://www.quakelive.com/) Wolfenstein: Enemy Territory (http://www.splashdamage.com/wolfet) Combat Arms (http://combatarms.nexon.net/) RTS Battle for Wesnoth (http://www.wesnoth.org/) RPG Maple Story (http://maplestory.nexon.net/) Runescape (http://www.runescape.com/) Music FlashFlashRevolution (http://www.flashflashrevolution.com/) Racing TrackMania Nations Forever (http://www.trackmania.com/index.php?rub=nations)]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick list of free full games I know of.</p>
<p>FPS<br />
Warsow (<a href="http://www.warsow.net/">http://www.warsow.net/</a>)<br />
OpenArena (<a href="http://www.openarena.ws/">http://www.openarena.ws/</a>)<br />
UrbanTerror (<a href="http://www.urbanterror.net/">http://www.urbanterror.net/</a>)<br />
Quake Live (<a href="http://www.quakelive.com/">http://www.quakelive.com/</a>)<br />
Wolfenstein: Enemy Territory (<a href="http://www.splashdamage.com/wolfet">http://www.splashdamage.com/wolfet</a>)<br />
Combat Arms (<a href="http://combatarms.nexon.net/">http://combatarms.nexon.net/</a>)</p>
<p>RTS<br />
Battle for Wesnoth (<a href="http://www.wesnoth.org/">http://www.wesnoth.org/</a>)</p>
<p>RPG<br />
Maple Story (<a href="http://maplestory.nexon.net/">http://maplestory.nexon.net/</a>)<br />
Runescape (<a href="http://www.runescape.com/">http://www.runescape.com/</a>)</p>
<p>Music<br />
FlashFlashRevolution (<a href="http://www.flashflashrevolution.com/">http://www.flashflashrevolution.com/</a>)</p>
<p>Racing<br />
TrackMania Nations Forever (<a href="http://www.trackmania.com/index.php?rub=nations">http://www.trackmania.com/index.php?rub=nations</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2009/10/29/list-of-free-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World of Warcraft/Matrix joke</title>
		<link>http://maceman.info/2009/08/04/world-of-warcraftmatrix-joke/</link>
		<comments>http://maceman.info/2009/08/04/world-of-warcraftmatrix-joke/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 19:32:56 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=54</guid>
		<description><![CDATA[Tigole &#8211; The first raid I designed was quite naturally perfect, it was a work of art, flawless, sublime. An unending triumph equaled only by its monumental failure. The inevitability of progression is as apparent to me now as a consequence of the imperfection inherent in every human being, thus I redesigned it based on [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Tigole &#8211; The first raid I designed was quite naturally perfect, it was a work of art, flawless, sublime. An unending triumph equaled only by its monumental failure. The inevitability of progression is as apparent to me now as a consequence of the imperfection inherent in every human being, thus I redesigned it based on your history to more accurately reflect the varying epic-ness of your nature. However, I was again frustrated by failure. I have since come to understand that the answer eluded me because it required a lesser mind, or perhaps a mind less bound by the need for subscribers. Thus, the answer was stumbled upon by another, an intuitive program, initially created to investigate certain aspects of marine life.</p>
<p>Raider &#8211; Ghostcrawler.</p>
<p>Tigole &#8211; Please. As I was saying, he stumbled upon a solution whereby nearly 99.9% of all test subjects accepted raiding, as long as they were given a difficulty choice, even if they were only aware of the choice at the zone in. While this answer functioned, it was obviously fundamentally flawed, thus creating the otherwise contradictory term &#8220;easy progression&#8221;, that if left unchecked might threaten the system itself. Ergo, those that refused to do hard modes, while a minority, if unchecked, would constitute an escalating probability of disaster.</p>
<p>Raider &#8211; This is about achievements.</p>
<p>Tigole &#8211; You are here because the proto-drake is about to be removed. Its every user immortalized, its means of acquisition eradicated.</p>
<p>Raider &#8211; Bull@@!#.</p>
<p>Tigole &#8211; Denial is the most predictable of all human responses. But, rest assured, this will be the second time we have removed it, and we have become exceedingly efficient at it.</p>
<p>Tigole &#8211; The function of the raider is to return to the zone-in, allowing a temporary dissemination of the epics you carry, disbanding your guild. After which you will be required to select from the server 24 individuals to sign a guild charter. Failure to comply with this process will result in a cataclysmic system crash killing every raider on the server, which coupled with the extermination of raiding will ultimately result in the extinction of World of Warcraft.</p>
<p>Raider &#8211; You won&#8217;t let it happen, you can&#8217;t. You need human beings to subscribe.</p>
<p>Tigole &#8211; There are levels of subscription we are prepared to accept.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2009/08/04/world-of-warcraftmatrix-joke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Counter-Strike 1.6 voice commands.</title>
		<link>http://maceman.info/2009/07/30/counter-strike-1-6-voice-commands/</link>
		<comments>http://maceman.info/2009/07/30/counter-strike-1-6-voice-commands/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 06:34:57 +0000</pubDate>
		<dc:creator>MaceMan</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[goldsrc]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[steam]]></category>
		<category><![CDATA[valve]]></category>

		<guid isPermaLink="false">http://maceman.info/?p=52</guid>
		<description><![CDATA[Radio Responses/Reports Name (RADIO): Roger that. Name (RADIO): Enemy spotted. Name (RADIO): Need backup. Name (RADIO): Sector clear. Name (RADIO): I&#8217;m in position. Name (RADIO): Reporting in. Name (RADIO): Get out of there, it&#8217;s gonna blow! Name (RADIO): Negative. Name (RADIO): Enemy down. Radio Group Commands Name (RADIO): Go go go! Name (RADIO): Team, fall [...]]]></description>
			<content:encoded><![CDATA[<p>Radio Responses/Reports<br />
Name (RADIO): Roger that.<br />
Name (RADIO): Enemy spotted.<br />
Name (RADIO): Need backup.<br />
Name (RADIO): Sector clear.<br />
Name (RADIO): I&#8217;m in position.<br />
Name (RADIO): Reporting in.<br />
Name (RADIO): Get out of there, it&#8217;s gonna blow!<br />
Name (RADIO): Negative.<br />
Name (RADIO): Enemy down.</p>
<p>Radio Group Commands<br />
Name (RADIO): Go go go!<br />
Name (RADIO): Team, fall back!<br />
Name (RADIO): Stick together, team.<br />
Name (RADIO): Get in position and wait for my go.<br />
Name (RADIO): Storm the Front!<br />
Name (RADIO): Report in, team.</p>
<p>Radio Commands<br />
Name (RADIO): Cover me!<br />
Name (RADIO): You Take the Point.<br />
Name (RADIO): Hold This Position.<br />
Name (RADIO): Regroup Team.<br />
Name (RADIO): Follow Me.<br />
Name (RADIO): Taking Fire&#8230;Need Assistance!</p>
]]></content:encoded>
			<wfw:commentRss>http://maceman.info/2009/07/30/counter-strike-1-6-voice-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
