<?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>gothi</title>
	<atom:link href="http://www.gothi.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gothi.co.uk</link>
	<description>A badly chosen byte</description>
	<lastBuildDate>Tue, 09 Feb 2010 16:48:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing WP e-Commerce</title>
		<link>http://www.gothi.co.uk/2010/02/fixing-wp-e-commerce/</link>
		<comments>http://www.gothi.co.uk/2010/02/fixing-wp-e-commerce/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 16:48:23 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[e-Commerce]]></category>
		<category><![CDATA[Gold Cart]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=215</guid>
		<description><![CDATA[I&#8217;ve been implementing the Wordpress e-Commerce plug-in on another site, it&#8217;s not a bad freebie but if you&#8217;re selling anything more than a handful of items then you&#8217;ll need to let your users search your products.  To add this functionality, along with a few other features, you need to purchase the $50 Gold Cart add-in.
I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been implementing the Wordpress e-Commerce plug-in on another site, it&#8217;s not a bad freebie but if you&#8217;re selling anything more than a handful of items then you&#8217;ll need to let your users search your products.  To add this functionality, along with a few other features, you need to purchase the $50 Gold Cart add-in.</p>
<p>I duly purchased and installed the update only to find that the &#8220;search&#8221; only looked at product titles, meaning that all the description text, additional description text and meta tags were being ignored.   Looking around it appears I wasn&#8217;t the only person who needed this functionality and I was able to get hold of some code to change in gold_shopping_cart.php.  I still didn&#8217;t get the results I was expecting so after checking out the Database table structure I went from</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code7'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2157"><td class="code" id="p215code7"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$category_list</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>get_col<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT `id` FROM `&quot;</span><span style="color: #339933;">.</span>WPSC_TABLE_PRODUCT_CATEGORIES<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;` WHERE `name` LIKE '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$search_string_title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>to</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2158"><td class="code" id="p215code8"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$category_list</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>get_col<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT id FROM `&quot;</span><span style="color: #339933;">.</span>WPSC_TABLE_PRODUCT_LIST<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;` WHERE name LIKE '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$search_string_title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' OR description LIKE '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$search_string_title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' OR additional_description LIKE '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$search_string_title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Notice the change in the table being searched.  The original code I found still looked in the WPSC_TABLE_PRODUCT_CATEGORIES table but this does not contain the additional_description field, an oversight on the original modders part.</p>
<p>Yet I still wasn&#8217;t getting the expected results.  A quick count of the $category_list array showed I was getting results but they were getting filtered out further on in the function by this little check:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code9'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2159"><td class="code" id="p215code9"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$category_list</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$category_assoc_list</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_col</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT DISTINCT `product_id` FROM `&quot;</span><span style="color: #339933;">.</span>WPSC_TABLE_ITEM_CATEGORY_ASSOC<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;` WHERE `category_id` IN ('&quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/implode"><span style="color: #990000;">implode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;', '&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$category_list</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;')&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #000088;">$category_sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;OR `&quot;</span><span style="color: #339933;">.</span>WPSC_TABLE_PRODUCT_LIST<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;`.`id` IN ('&quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/implode"><span style="color: #990000;">implode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;', '&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$category_assoc_list</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;')&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Remember that I&#8217;m now searching products directly and the above code is looking to match the products unique ID against a category ID, clearly this will fail on 99% of searches.  A quick change to the search criteria is all that was needed to return valid results:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code10'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p21510"><td class="code" id="p215code10"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$category_list</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$category_assoc_list</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_col</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT DISTINCT `product_id` FROM `&quot;</span><span style="color: #339933;">.</span>WPSC_TABLE_ITEM_CATEGORY_ASSOC<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;` WHERE `product_id` IN ('&quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/implode"><span style="color: #990000;">implode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;', '&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$category_list</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;')&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #000088;">$category_sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;OR `&quot;</span><span style="color: #339933;">.</span>WPSC_TABLE_PRODUCT_LIST<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;`.`id` IN ('&quot;</span><span style="color: #339933;">.</span><a href="http://www.php.net/implode"><span style="color: #990000;">implode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;', '&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$category_assoc_list</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;')&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>With that completed I looked at adding a separate search interface and came across WP e-Commerce Search Widget, a handy bit of code but unfortunately it doesn&#8217;t appear to be compatible with the latest version of WP e-Commerce so I had to quickly update</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code11'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p21511"><td class="code" id="p215code11"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>form method<span style="color: #339933;">=</span><span style="color: #0000ff;">'GET'</span> name<span style="color: #339933;">=</span><span style="color: #0000ff;">'product_search'</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;productsearchform&quot;</span> action<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bloginfo('home');  ?&gt;/&quot;</span><span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>to</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code12'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p21512"><td class="code" id="p215code12"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>form method<span style="color: #339933;">=</span><span style="color: #0000ff;">'GET'</span> name<span style="color: #339933;">=</span><span style="color: #0000ff;">'product_search'</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;productsearchform&quot;</span> action<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bloginfo('home');  ?&gt;/products-page/&quot;</span><span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>WP e-Commerce is a lot of work, especially considering you have to pay $50 just to get basic functionality and then hack in the desired features.  Lets hope the checkout refresh bug doesn&#8217;t hit again&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2010/02/fixing-wp-e-commerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Bump&#8221; your way to hidden areas on ODST</title>
		<link>http://www.gothi.co.uk/2009/10/bump-your-way-to-hidden-areas-on-odst/</link>
		<comments>http://www.gothi.co.uk/2009/10/bump-your-way-to-hidden-areas-on-odst/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 17:36:04 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[glitch]]></category>
		<category><![CDATA[Halo 3]]></category>
		<category><![CDATA[ODST]]></category>
		<category><![CDATA[Xbox360]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=208</guid>
		<description><![CDATA[The Secret Glyph Project have been hard at work and have figured out what was causing the doors in Sector 8 to disappear (see The ODST glyphs *DO NOT* unlock a door!&#8221; and Confirmed: ODST door disappearance is a glitch) and got in working in other sectors!
They&#8217;ve wrapped it up nicely in this Youtube video [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://subculturelifestyle.com/forum/index.php?board=29.0" target="_blank">Secret Glyph Project</a> have been hard at work and have figured out what was causing the doors in Sector 8 to disappear (see <a href="http://www.gothi.co.uk/2009/10/the-odst-glyphs-do-not-unlock-a-door/" target="_blank">The ODST glyphs *DO NOT* unlock a door!&#8221;</a> and <a href="http://www.gothi.co.uk/2009/10/confirmed-odst-door-disappearance-is-a-glitch/" target="_blank">Confirmed: ODST door disappearance is a glitch</a>) and got in working in other sectors!</p>
<p>They&#8217;ve wrapped it up nicely in this Youtube video which servers as both a demonstration and tutorial.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/M4UrE8O8PMw&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/M4UrE8O8PMw&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>For detailed information on how to repeat it and how it works check out their <a href="http://subculturelifestyle.com/forum/index.php?topic=116.0" target="_blank">discussion forum</a> and get &#8220;bumping&#8221;!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/10/bump-your-way-to-hidden-areas-on-odst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confirmed: ODST door disappearance is a glitch</title>
		<link>http://www.gothi.co.uk/2009/10/confirmed-odst-door-disappearance-is-a-glitch/</link>
		<comments>http://www.gothi.co.uk/2009/10/confirmed-odst-door-disappearance-is-a-glitch/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 20:10:09 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[glitch]]></category>
		<category><![CDATA[Halo 3]]></category>
		<category><![CDATA[ODST]]></category>
		<category><![CDATA[Xbox360]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=201</guid>
		<description><![CDATA[I&#8217;ve just gone back to the in-game video of me showing a friend the disappearing door in Sector 8 (see my previous post for details) and I checked out Sector 8 before and after the door disappears. This is nothing more than a repeatable glitch.
In comparison to the fully loaded sector when the door is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just gone back to the in-game video of me showing a friend the disappearing door in Sector 8 (see my previous post for details) and I checked out Sector 8 before and after the door disappears. This is nothing more than a repeatable glitch.</p>
<p>In comparison to the fully loaded sector when the door is missing the following applies:</p>
<p><b>3</b> areas used as the SI supply drops are now open (not just the 1 originally discovered).<br />
The grunts and turrets are not loaded in one of the circular areas.<br />
Adverts for cars are missing from the walls.<br />
Various items are not loaded such as the Opticon health dispensers and stand alone terminals (such as the one near the shotgun).</p>
<p>So it&#8217;s a case of good work on finding a glitch, now can we do this on other sectors to access even more areas that should be blocked off?</p>
<p>JSM26 has uploaded an ODST video to his Bungie.net file share showing <a href="http://www.bungie.net/Online/Halo3UserContentDetails.aspx?h3fileid=96810834" target="_blank">missing Opticon dispensers and de-loaded doors in the starting sector</a>.  Further evidence that the ODST modified Halo 3 engine has glitches, possibly exploitable to access other blocked off areas the designers never wanted us to get to&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/10/confirmed-odst-door-disappearance-is-a-glitch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The ODST glyphs *DO NOT* unlock a door!</title>
		<link>http://www.gothi.co.uk/2009/10/the-odst-glyphs-do-not-unlock-a-door/</link>
		<comments>http://www.gothi.co.uk/2009/10/the-odst-glyphs-do-not-unlock-a-door/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 17:05:24 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[Halo 3]]></category>
		<category><![CDATA[ODST]]></category>
		<category><![CDATA[Xbox360]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=193</guid>
		<description><![CDATA[There&#8217;s been quite a bit of excitement over at Bungie.net recently, someone noticed that if you look at some of the glowing Covenant glyphs in Sector 6 resulted in two doors in Sector 8 disappearing allowing access to a previously blocked off area and an empty supply drop.  The Secret Glyph Project got on the [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been quite a bit of excitement over at Bungie.net recently, someone noticed that if you look at some of the glowing Covenant glyphs in Sector 6 resulted in two doors in Sector 8 disappearing allowing access to a previously blocked off area and an empty supply drop.  <a href="http://subculturelifestyle.com/forum/index.php?board=29.0" target="_blank">The Secret Glyph Project</a> got on the wagon and produced a video demonstrating the effect and a whole slew of sub-forums were created to track this phenomenon.</p>
<p>I&#8217;m sad to say that  the doors disappear from what appears to be a loading glitch, not from looking at any glyphs.  Here&#8217;s how I determined this, I encourage you to try this to replicate the results:</p>
<blockquote><p><em><span style="color: #ff0000;"><em><span style="color: #ff0000;">Having completed the game</span></em> I loaded up New Mombasa Streets,  immediately got myself a mongoose and headed to Sector 8 to check on the door.  At this point I should point out that at no time after getting the mongoose did I have the visor on.  The door was closed as expected.</span></em><em><span style="color: #ff0000;"><br />
</span></em><em><span style="color: #ff0000;"> I then drove over to Sector 6 and without turning on my visor walked up to the covenant sniper rifle next to the Elites, picked it up and got back on my mongoose (parked near to the Sector exit).  I then drove immediately back to the door which was now open with no glyphs sighted.</span></em></p>
<p><em><span style="color: #ff0000;"> </span></em><em><span style="color: #ff0000;">If you look at a map you&#8217;ll see that Sector 8 is actually a twisted mirror of Sector 3 and if you look closely you&#8217;ll see that Sector 3 also has a room with funny tiles on it matching the location and design of the one in Sector 8.  If you go to this area you&#8217;ll immediately feel at home and easily spot the Security door as placed in a mirror fashion to the one in Sector 8. This door opens&#8230;</span></em></p>
<p><em><span style="color: #ff0000;"> </span></em><em><span style="color: #ff0000;">So, it&#8217;s my belief that this is just fall out to the way the game engine loads the levels and nothing at all to do with the glyphs, it&#8217;s just coincidence that they are located in the area you need to go to de-load the doors.</span></em></p></blockquote>
<p>Certain glyphs lead you to keys areas so for me it&#8217;s pretty clear that the glyphs are there for player guidance and to add an air of mystery.  Give it it a go, try the experiment above and let me know your results.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/10/the-odst-glyphs-do-not-unlock-a-door/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Halo 3 Asset-O-Matic R.I.P?</title>
		<link>http://www.gothi.co.uk/2009/09/halo-3-asset-o-matic-r-i-p/</link>
		<comments>http://www.gothi.co.uk/2009/09/halo-3-asset-o-matic-r-i-p/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 21:36:03 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Asset-O-Matic]]></category>
		<category><![CDATA[Halo 3]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=187</guid>
		<description><![CDATA[As expected, the redesign of Bungie.net; has stopped the Halo 3 Asset-O-Matic from working.
I&#8217;m not sure if I will be updating the app to support the new layout, I&#8217;ll have to see how inspired I am with the release of ODST&#8230;;)
]]></description>
			<content:encoded><![CDATA[<p>As expected, the redesign of <a href="http://www.bungie.net" target="_blank">Bungie.net</a>; has stopped the Halo 3 Asset-O-Matic from working.</p>
<p>I&#8217;m not sure if I will be updating the app to support the new layout, I&#8217;ll have to see how inspired I am with the release of ODST&#8230;;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/09/halo-3-asset-o-matic-r-i-p/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New 360 dash preview</title>
		<link>http://www.gothi.co.uk/2009/07/new-360-dash-preview/</link>
		<comments>http://www.gothi.co.uk/2009/07/new-360-dash-preview/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 07:08:28 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[preview]]></category>
		<category><![CDATA[Xbox360]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=184</guid>
		<description><![CDATA[So, I booted up my 360 this morning so I could experience the wonders of the new dash&#8230;
Avatar props:
They&#8217;ve missed the crucial factor here, impulse purchasing.  Every thing&#8217;s priced too high, prices should range from 20G to 100G, if it were I&#8217;d have probably spent 800G this morning alone, but as it is I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>So, I booted up my 360 this morning so I could experience the wonders of the new dash&#8230;</p>
<p>Avatar props:<br />
They&#8217;ve missed the crucial factor here, impulse purchasing.  Every thing&#8217;s priced too high, prices should range from 20G to 100G, if it were I&#8217;d have probably spent 800G this morning alone, but as it is I&#8217;ve bought nothing.  I&#8217;m not spending 320G on a remote control warthog that can only be seen on the dash, that&#8217;s almost half the price of a game!<br />
Stan&#8217;s Outfit should be 1 purchase, you shouldn&#8217;t have to buy the hat separately.<br />
I&#8217;ll be sticking to the freebies from games for a while until something that <strong>really</strong> appeals to my impulsive side turns up.</p>
<p>Dash speed:<br />
Yup, it&#8217;s true, the dash feels almost as responsive as the USA one did!  I was able to queue up 4 episodes of the guild in the time it would have previously taken to queue up a single episode.  I&#8217;m hoping that this responsiveness continues into the guide when you&#8217;re in game, I&#8217;ve nearly thrown my controller around the room before whilst waiting over 2 minutes for the guide to load up at a crucial part of an online game</p>
<p>The other stuff:</p>
<p>It&#8217;s all fluff apart from that.  I don&#8217;t need to tweak my display options, date stamps on saves are very useful but I rarely do anything with my saves as it is.  The change to my gamercard is very nice but I can live without it, as can most others I expect. The achievement browser is a useful indication of how few games I have 100% whored, I wish they&#8217;d taken this further showing games with easy achievements to reach, links to guides and strategies and the like.  Could have been a great cross promotional effort with IGN, as it is it&#8217;s just a nice bit of fluff.</p>
<p>It&#8217;s good, but it doesn&#8217;t have any of the exciting features such as Last.fm, Sky integration and the other cool features we&#8217;ve been promised at E3.  Still, nice to be on the first wave I guess <img src='http://www.gothi.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/07/new-360-dash-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1 vs 100 UK launch</title>
		<link>http://www.gothi.co.uk/2009/07/1-vs-100-uk-launch/</link>
		<comments>http://www.gothi.co.uk/2009/07/1-vs-100-uk-launch/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 12:58:34 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[1 vs 100]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=180</guid>
		<description><![CDATA[I managed to start the UK client a few hours early..
Might try it an hour or so before the live show when they might be accepting connections  
]]></description>
			<content:encoded><![CDATA[<p>I managed to start the UK client a <i>few</i> hours early..</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.gothi.co.uk/uploads/1vs100.jpg"><img alt="1 vs 100 UK launch, click for larger size" src="http://www.gothi.co.uk/uploads/1vs100small.jpg" title="1 vs 100 UK launch, click for larger size" width="300" height="225" /></a><p class="wp-caption-text">1 vs 100 UK launch</p></div>
<p>Might try it an hour or so before the live show when they might be accepting connections <img src='http://www.gothi.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/07/1-vs-100-uk-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skyjacktastic!</title>
		<link>http://www.gothi.co.uk/2009/06/skyjacktastic/</link>
		<comments>http://www.gothi.co.uk/2009/06/skyjacktastic/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 20:15:05 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[Halo 3]]></category>
		<category><![CDATA[render to video]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Xbox Live]]></category>
		<category><![CDATA[Xbox360]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=176</guid>
		<description><![CDATA[Using the wonderful Render-to-Video feature at Bungie.net take a glimpse into my Halo life where I make a daring raid on an  incoming banshee
]]></description>
			<content:encoded><![CDATA[<p>Using the wonderful Render-to-Video feature at Bungie.net take a glimpse into my Halo life where I make a daring raid on an  <a href="http://www.bungie.net/Online/Halo3UserContentDetails.aspx?h3fileid=79459743" target="_blank">incoming banshee</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/06/skyjacktastic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So, how do you use this thing again?</title>
		<link>http://www.gothi.co.uk/2009/05/so-how-do-you-use-this-thing-again/</link>
		<comments>http://www.gothi.co.uk/2009/05/so-how-do-you-use-this-thing-again/#comments</comments>
		<pubDate>Sat, 23 May 2009 10:08:47 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Asset-O-Matic]]></category>
		<category><![CDATA[Halo 3]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=170</guid>
		<description><![CDATA[I&#8217;ve noticed that some questions are reoccuring, spefically how people can view their search results.  Results are not automatically loaded, searching and viewing and two entirely different actions and can be done at the same time.
To assist users old and new I&#8217;ve knocked up a quick Halo 3 Asset-O-Matic FAQ, this will be updated [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve noticed that some questions are reoccuring, spefically how people can view their search results.  Results are not automatically loaded, searching and viewing and two entirely different actions and can be done at the same time.</p>
<p>To assist users old and new I&#8217;ve knocked up a quick <a href="http://www.gothi.co.uk/halo-3-asset-o-matic-faq/">Halo 3 Asset-O-Matic FAQ</a>, this will be updated as and when information becomes pertinent.  If you&#8217;re struggling to figure something out and it&#8217;s not on the FAQ feel free to leave a comment so I can answer your question and add it to the FAQ if appropriate <img src='http://www.gothi.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/05/so-how-do-you-use-this-thing-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halo 3 Asset-O-matic Beta 4</title>
		<link>http://www.gothi.co.uk/2009/05/halo-3-asset-o-matic-beta-4/</link>
		<comments>http://www.gothi.co.uk/2009/05/halo-3-asset-o-matic-beta-4/#comments</comments>
		<pubDate>Tue, 19 May 2009 21:24:21 +0000</pubDate>
		<dc:creator>gothi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Asset-O-Matic]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[Halo 3]]></category>
		<category><![CDATA[Xbox360]]></category>

		<guid isPermaLink="false">http://www.gothi.co.uk/?p=156</guid>
		<description><![CDATA[Download Halo 3 Asset-O-Matic Beta 4
What happened to Beta 3 you may ask. Well Bungie made a few changes in between me completing Beta 3 and actually finding time to upload it.  By that time it no longer worked.
So, what you have in your metaphysical hands is Beta 4, it&#8217;s just like Beta 3 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gothi.co.uk/downloads/h3assetomaticbeta4.zip">Download Halo 3 Asset-O-Matic Beta 4</a></p>
<p>What happened to Beta 3 you may ask. Well Bungie made a few changes in between me completing Beta 3 and actually finding time to upload it.  By that time it no longer worked.</p>
<p>So, what you have in your metaphysical hands is Beta 4, it&#8217;s just like Beta 3 but it works!</p>
<p>The changes are:</p>
<p><strong>*</strong>You can now search Matchmaking <b>or</b> Custom games</p>
<p><strong>*</strong>You can now go directly to the files instead of the match details</p>
<p><strong>*</strong>It is <b>significantly</b> faster (think 5 minutes to search over 2500+ matches..)</p>
<p><strong>*</strong>Templates are working (sorta, no word wrapping enabled and no way to clear the output box). This allows you to enter some text in the top section, hit a button and have your text repeated with the following tokens replaced by data from the currently loaded database: %SCREENS%, %CLIPS%, %GAMEID% (used for linking directly to the game), %GAMETYPE%, %GAMEDATETIME% and %MAP%</p>
<p>Alas, Campaign searching did not make it in.  I wrote half the code and then realised it needs a whole new DB format to support the relevent information found for a Campaign record.  I will add support once my busy work life allows.</p>
<p><b>Databases from previous versions are not compatible with this new release.</b>  A fresh search is always preferred in this house <img src='http://www.gothi.co.uk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Give it a try yourself, tell your friends!  Download the <a href="http://www.gothi.co.uk/downloads/h3assetomaticbeta4.zip">Halo 3 Asset-O-Matic Beta 4</a> today!</p>
<p>(Feedback is always appreciated folks! <img src='http://www.gothi.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gothi.co.uk/2009/05/halo-3-asset-o-matic-beta-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
