<?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>Messy Mind &#187; Game Maker</title>
	<atom:link href="http://www.messy-mind.net/category/game-maker/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.messy-mind.net</link>
	<description>Welcome to the tangle in my head.</description>
	<lastBuildDate>Wed, 09 Nov 2011 22:39:20 +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>GFFI</title>
		<link>http://www.messy-mind.net/2009/gffi/</link>
		<comments>http://www.messy-mind.net/2009/gffi/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 07:00:40 +0000</pubDate>
		<dc:creator>Clam</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[ffi]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gffi]]></category>
		<category><![CDATA[gm]]></category>
		<category><![CDATA[maker]]></category>

		<guid isPermaLink="false">http://www.messy-mind.net/2009/gffi/</guid>
		<description><![CDATA[GFFI – Game Maker Foreign Function Interface
GFFI is a dll that allows you to call functions from other dlls.
It is much more flexible than external_call, supporting
all the basic data types in C, as well as providing advanced features for
working with structs and arrays. There are no restrictions on the
number of string arguments (or any other [...]]]></description>
			<content:encoded><![CDATA[<p>GFFI – Game Maker Foreign Function Interface</p>
<p>GFFI is a dll that allows you to call functions from other dlls.<br />
It is much more flexible than external_call, supporting<br />
all the basic data types in C, as well as providing advanced features for<br />
working with structs and arrays. There are no restrictions on the<br />
number of string arguments (or any other argument type for that matter)<br />
other than Game Maker’s 16 argument limit (this can be worked around<br />
in future if the need is there). The functionality provided is similar<br />
to Python’s ctypes module and .NET’s P/Invoke system.</p>
<p>The speed should be comparable to external_call. There is slightly more overhead<br />
due to the dynamic nature of the code, which uses transparent type conversion<br />
and intelligent assembly code. Through the use of Gmapi, all the<br />
functions available for use are inserted as a builtin GM function. There is no<br />
interpreted code involved once you call a GFFI function. Nearly all the scripts<br />
provided are placeholders to avoid syntax errors, they also contain documentation.</p>
<p>I hope people find this DLL useful, I used it as an opportunity to learn some C<br />
(and then hastily tacked on a C++ library).<br />
I’ve included a few basic examples of usage – it’s perfect for making a few<br />
WinAPI calls without writing an ad-hoc wrapper dll.</p>
<p>Update: I released this just before GM8 came out. I just added support for GM8 as well.</p>
<p><a href="http://www.messy-mind.net/uploads/2009/12/gffi-1.1.zip">GFFI 1.1</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=490&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2009/gffi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GM Decompiler Update</title>
		<link>http://www.messy-mind.net/2008/gm-decompiler-update/</link>
		<comments>http://www.messy-mind.net/2008/gm-decompiler-update/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 08:49:54 +0000</pubDate>
		<dc:creator>Clam</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[decompiler]]></category>
		<category><![CDATA[yoyo games]]></category>

		<guid isPermaLink="false">http://www.messy-mind.net/game-maker/gm-decompiler-update/</guid>
		<description><![CDATA[Well, here it is, the update to the GM decompiler that&#8217;s taken something like 9 months to release. Obviously I haven&#8217;t been working on it all that time, I just picked it up from time to time.
Anyway, it does pretty much everything the old one didn&#8217;t:

 Decompiles Instant Play games
Extracts extensions from GM7 games
Extracts Game [...]]]></description>
			<content:encoded><![CDATA[<p>Well, here it is, the update to the GM decompiler that&#8217;s taken something like 9 months to release. Obviously I haven&#8217;t been working on it all that time, I just picked it up from time to time.</p>
<p>Anyway, it does pretty much everything the old one didn&#8217;t:</p>
<ul>
<li> Decompiles Instant Play games</li>
<li>Extracts extensions from GM7 games</li>
<li>Extracts Game Icon, exe info</li>
<li>Shows a progress dialog rather than freezing</li>
<li>Fixes a bug that I know at least one person exploited to make their game &#8220;undecompilable&#8221;</li>
</ul>
<p>Yes, it&#8217;s obfuscated. No, you still can&#8217;t have the source, though I&#8217;m wondering what would happen if I <strong>did</strong> release it.</p>
<p>As a final note, at least some good will come of this. The information collected in the making of this tool makes it possible for third party programs to compile exes using the GM runner. No, we haven&#8217;t investigated the legality of this exhaustively yet, but it will make programs like <a title="LateralGM" href="http://www.ismavatar.com/lgm">LateralGM</a> far more useful if we can do it.</p>
<p>edit: Fixed a bug with extensions, latest version is now 2.1</p>
<p><a title="Gm Decompiler v2" href="http://www.messy-mind.net/wp-content/uploads/2008/10/gmdecompiler_v2_1.jar">Gm Decompiler v2.1</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=104&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2008/gm-decompiler-update/feed/</wfw:commentRss>
		<slash:comments>91</slash:comments>
		</item>
		<item>
		<title>Game Maker GUI</title>
		<link>http://www.messy-mind.net/2008/game-maker-gui/</link>
		<comments>http://www.messy-mind.net/2008/game-maker-gui/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 08:05:30 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[eyecandy]]></category>
		<category><![CDATA[interface]]></category>

		<guid isPermaLink="false">http://www.messy-mind.net/game-maker/game-maker-gui/</guid>
		<description><![CDATA[Well, after a massive delay this thing is finally released. It is far, far from finished but I don&#8217;t use game maker anymore and I knew that if I don&#8217;t make it somewhat presentable and release it now, I&#8217;ll never do it. So it comes as-is. You will have to learn how to use it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.messy-mind.net/wp-content/uploads/2008/04/gui.png" rel="shadowbox"><img src="http://www.messy-mind.net/wp-content/uploads/2008/04/gui.thumbnail.png"/></a><br />
Well, after a massive delay this thing is finally released. It is far, far from finished but I don&#8217;t use game maker anymore and I knew that if I don&#8217;t make it somewhat presentable and release it now, I&#8217;ll never do it. So it comes as-is. You will have to learn how to use it by looking at the example content and reading the comments of the scripts.<br />
<br />
Its a real shame that I won&#8217;t be able to finish this. </p>
<p><a href='http://www.messy-mind.net/wp-content/uploads/2008/04/gui.zip' title='GM Gui'>GM Gui</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=102&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2008/game-maker-gui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Complete GM decompiler.</title>
		<link>http://www.messy-mind.net/2008/complete-gm-decompiler/</link>
		<comments>http://www.messy-mind.net/2008/complete-gm-decompiler/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 07:04:31 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[decompiler]]></category>
		<category><![CDATA[yoyo games]]></category>

		<guid isPermaLink="false">http://www.messy-mind.net/game-maker/complete-gm-decompiler-for-versions-567-extensions/</guid>
		<description><![CDATA[I am not the author of this tool, I&#8217;m merely distributing it. It&#8217;s the result of a lot of work by several people. It is a complete decompiler. It will take an executable made by gm5-7 or an extension, and spit out a working gmd/gm6/gm7.
This is for educational purposes only, the documentation about the encryption [...]]]></description>
			<content:encoded><![CDATA[<p>I am not the author of this tool, I&#8217;m merely distributing it. It&#8217;s the result of a lot of work by several people. It is a complete decompiler. It will take an executable made by gm5-7 or an extension, and spit out a working gmd/gm6/gm7.</p>
<p>This is for educational purposes only, the documentation about the encryption and how its broken can be found on the internets.</p>
<p><a href='http://www.messy-mind.net/wp-content/uploads/2008/01/gmdecompiler.jar' title='GM Decompiler'>GM Decompiler</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=95&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2008/complete-gm-decompiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High quality terrain/tile transitions</title>
		<link>http://www.messy-mind.net/2007/high-quality-terraintile-transitions/</link>
		<comments>http://www.messy-mind.net/2007/high-quality-terraintile-transitions/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 03:33:18 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://gear.64digits.com/blog/geargods/high-quality-terraintile-transitions/</guid>
		<description><![CDATA[A few nights ago a magical fairy came to me in my dreams and told me, &#8216;all those executables which you lost the editables to, they&#8217;re actually editables!&#8217; I thought the fairy was full of shit but what do you know, the next morning I looked in my GM folder and lo and behold, there [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://messy-mind.net/blog/wp-content/uploads/2007/10/transitions.jpg" rel="shadowbox"><img src="http://messy-mind.net/blog/wp-content/uploads/2007/10/transitions.thumbnail.jpg"/></a><br />
A few nights ago a magical fairy came to me in my dreams and told me, &#8216;all those executables which you lost the editables to, they&#8217;re actually editables!&#8217; I thought the fairy was full of shit but what do you know, the next morning I looked in my GM folder and lo and behold, there appeared editables for things I lost the source to!</p>
<p>In celebration, here is the editable to something really neat I wrote a while ago. It&#8217;s a ridiculously fast (for what it does) terrain renderer which supports spec highlights and I would bet, beats using tiles on occassion. It&#8217;s an extension of my metaballs rendering concept applied across any number of tile layers without involving a second surface.<br />
It&#8217;s just a proof of concept for an idea I never got to finish and polish, but hey so is a lot of other stuff I put here. Once again, look, learn, use. Or, attempt to blindly integrate it in your game and hope for the best.</p>
<p>Oh by the way. It was written back in gm6, and gm6 had a stupid bug to do with surfaces, which I had to cheat around. In gm7 it seems to have been dealt with so my workaround actually causes the inverse of the bug to happen. So if you&#8217;re using it in gm7, open the startup script and change the values of fx and fy to 1.</p>
<p><a href='http://messy-mind.net/blog/wp-content/uploads/2007/10/sbt.gm6' title='Surface Based Terrain'>Surface Based Terrain</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=89&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2007/high-quality-terraintile-transitions/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Lumines type &#8217;scanner&#8217; with fireflies</title>
		<link>http://www.messy-mind.net/2007/fireflies/</link>
		<comments>http://www.messy-mind.net/2007/fireflies/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 05:43:52 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://gear.64digits.com/blog/game-maker/fireflies/</guid>
		<description><![CDATA[Something neat I ran into today; a little proof of concept for a Lumines kind of effect. Only, prettier.
Fireflies
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.messy-mind.net/blog/wp-content/uploads/2007/10/scanner.jpg" rel="shadowbox"><img src="http://messy-mind.net/blog/wp-content/uploads/2007/10/scanner.thumbnail.jpg"/></a><br />
Something neat I ran into today; a little proof of concept for a Lumines kind of effect. Only, prettier.</highslide></p>
<p><a href="http://messy-mind.net/blog/wp-content/uploads/2007/10/scanner.gm6" title="Scanner">Fireflies</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=86&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2007/fireflies/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Realtime Dynamic Light</title>
		<link>http://www.messy-mind.net/2007/realtime-dynamic-light/</link>
		<comments>http://www.messy-mind.net/2007/realtime-dynamic-light/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 01:28:19 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://gear.64digits.com/blog/game-maker/realtime-dynamic-light/</guid>
		<description><![CDATA[This is a little bit of history, the very first lighting system for game maker. Prior it was thought impossible to achieve. It works quite different from its modern cousins because surfaces didn&#8217;t exist back in the day. It&#8217;s obviously not for actual use, I thought thought it would be nice a post a page [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://messy-mind.net/blog/wp-content/uploads/2007/10/realtimedynamic.jpg" rel="shadowbox"><img src="http://messy-mind.net/blog/wp-content/uploads/2007/10/realtimedynamic.thumbnail.jpg"/></a><br />
This is a little bit of history, the very first lighting system for game maker. Prior it was thought impossible to achieve. It works quite different from its modern cousins because surfaces didn&#8217;t exist back in the day. It&#8217;s obviously not for actual use, I thought thought it would be nice a post a page in GM history. Although several people have emailed me about it, one even intending to use it. I&#8217;m not sure why, but here you go.</p>
<p>While the thing itself is outdated, it still shows some good things to learn from like drawing smooth outlines around sprites and some uses for luminance scan, which you&#8217;ll find in every modern lighting engine.</p>
<p><a HREF="http://messy-mind.net/downloads/dynamic.gm6">Realtime Dynamic Light</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=73&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2007/realtime-dynamic-light/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GM Debug Mode Enabler</title>
		<link>http://www.messy-mind.net/2007/gm-debug-mode-enabler/</link>
		<comments>http://www.messy-mind.net/2007/gm-debug-mode-enabler/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 21:54:02 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[decompiler]]></category>
		<category><![CDATA[yoyo games]]></category>

		<guid isPermaLink="false">http://www.messy-mind.net/game-maker/gm-debug-mode-enabler/</guid>
		<description><![CDATA[Note: this page seems to be come across very often by those looking for a GM decompiler. Just so you know, this site actually holds one. You will find it at http://www.messy-mind.net/game-maker/complete-gm-decompiler/

I thought a while before posting this and decided that I will after all. The main reason this is here is to give Mark [...]]]></description>
			<content:encoded><![CDATA[<p>Note: this page seems to be come across very often by those looking for a GM decompiler. Just so you know, this site actually holds one. You will find it at <a href="http://www.messy-mind.net/game-maker/complete-gm-decompiler/">http://www.messy-mind.net/game-maker/complete-gm-decompiler/</a></p>
<hr />
<p>I thought a while before posting this and decided that I will after all. The main reason this is here is to give Mark and Yoyo a poke towards releasing a new version of gm and spending more money on its development as opposed to YoYo&#8217;s&#8230; Unusual business strategies. The other reason is that its actually incredibly simple and a lot of people know how to do it anyway. Gm6 can be forced into debug mode with a single winapi call, and gm7 can be forced into an even more dangerous debug more with the switch of a single byte. I kid you not!</p>
<p>What does it mean? It means your resources aren&#8217;t safe anywhere. While this is not a full-fledged decompiler, it does allow one to extract scripts, sprites, backgrounds, sounds, etc. It also allows them to inject code into any game which means you can do pretty much anything. The fact that it&#8217;s not a full-fledged decompiler is actually nice because it means that at least as far as gm6 is conerned, it doesn&#8217;t even break the tacky EULA that comes with GM. I say tacky because its been added to and modified to &#8216;keep up&#8217; with the evolving ways of exploitiong GM&#8217;s obvious weaknesses and its become so messy that it just stumbles all over itself and is so vague that I&#8217;ll eat my hat if it ever wins anyone a case in court.</p>
<p><a HREF="http://messy-mind.net/blog/wp-content/uploads/2007/10/debugger.zip" TITLE="Debug Enabler">Debug Enabler</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=66&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2007/gm-debug-mode-enabler/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Smooth loading bar</title>
		<link>http://www.messy-mind.net/2007/smooth-loading-bar/</link>
		<comments>http://www.messy-mind.net/2007/smooth-loading-bar/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 19:44:31 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/smooth-loading-bar/</guid>
		<description><![CDATA[

You might have seen this as part of an older GUI demo I posted. It&#8217;s a really smooth circular progressbar type thing. I just ran into it and thought it&#8217;d be nice to share. I still have to figure out what to do with my smaller creations.
Incidentally, I went and found the demo in question [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://messy-mind.net/blog/wp-content/uploads/2007/10/loady.png" rel="shadowbox"><img src="http://messy-mind.net/blog/wp-content/uploads/2007/10/loady.thumbnail.png"/></a><br />
<br />
<a href="http://messy-mind.net/blog/wp-content/uploads/2007/10/oldgui.jpg" rel="shadowbox"><img src="http://messy-mind.net/blog/wp-content/uploads/2007/10/oldgui.thumbnail.jpg"/></a></p>
<p>You might have seen this as part of an older GUI demo I posted. It&#8217;s a really smooth circular progressbar type thing. I just ran into it and thought it&#8217;d be nice to share. I still have to figure out what to do with my smaller creations.<br />
Incidentally, I went and found the demo in question and linked it here, even though I&#8217;ve lost the source to that particular build and can only offer an exe. I still think its a good little demo to look at as it demonstrates a number of things I takled about working in concert: interface, eyecandy, my object importer (here it is used to fetch content from the web and run it). You&#8217;ll find the demo at <a HREF="http://64digits.com/users/GearGOD/moreUltimate.zip">64digits</a>.</p>
<p>As for the sample itself&#8230; <a TITLE="Progress ring" HREF="http://messy-mind.net/blog/wp-content/uploads/2007/10/fader-ring.gm6">Progress ring.<br />
</a>And don&#8217;t fret, the editable for my GUI in it&#8217;s latest form is coming.</p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=62&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2007/smooth-loading-bar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visual Logic Proof of Concept</title>
		<link>http://www.messy-mind.net/2007/visual-logic-proof-of-concept/</link>
		<comments>http://www.messy-mind.net/2007/visual-logic-proof-of-concept/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 01:51:58 +0000</pubDate>
		<dc:creator>GearGOD</dc:creator>
				<category><![CDATA[Game Maker]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[interface]]></category>

		<guid isPermaLink="false">http://gear.64digits.com/blog/?p=55</guid>
		<description><![CDATA[This is a little proof of concept for a visual approach to programming.
You create a logic chain by placing links between the &#8216;input&#8217; and &#8216;output&#8217; points of actions/conditionals/loops/whatever. The rule is that at least one point of a link must be blue, and you can not link two blue points. Basically, make sure you only [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://messy-mind.net/blog/wp-content/uploads/2007/10/editor7kq.jpg" rel="shadowbox"><img src="http://messy-mind.net/blog/wp-content/uploads/2007/10/editor7kq.thumbnail.jpg"/></a><br />
This is a little proof of concept for a visual approach to programming.</p>
<p>You create a logic chain by placing links between the &#8216;input&#8217; and &#8216;output&#8217; points of actions/conditionals/loops/whatever. The rule is that at least one point of a link must be blue, and you can not link two blue points. Basically, make sure you only connect outputs and inputs, not two of the same kind.<br />
The execution starts from the function entry-point, the tag with only a white output.<br />
Currently you can not break links<br />
Currently you can link two outputs to the same input as a legal operation. Do you think this should be kept that way?<br />
Currently there is no checking for infinite loops (such as an output of a function linking straight back to it&#8217;s own input)<br />
On an IF, the green output links to what&#8217;s executed if the IF returned true, red for false, and white for whatever happens afterwards.</p>
<p>Once you&#8217;re done with the diagram, hit Return, and it will compile a script which will be saved to the same path as the program as &#8216;out.txt&#8217;<br />
If it freezes or throws an error, you created an infinite loop or other non-logical thing in the diagram.</p>
<p>It&#8217;s limited to random IFs and one function right now, but that can now easily grow.</p>
<p>The editable to this was lost with my hdd in 2006 so this is an exe.</p>
<p><a href="http://messy-mind.net/downloads/s_editor.zip">Visual Logic Editor</a></p>
<img src="http://www.messy-mind.net/?ak_action=api_record_view&id=55&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.messy-mind.net/2007/visual-logic-proof-of-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

