

<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>Kenney.nl</title>
	<atom:link href="http://www.kenney.nl/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.kenney.nl</link>
	<description>Games, graphics and more!</description>
	<lastBuildDate>Wed, 01 Sep 2010 15:05:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New: Ballista</title>
		<link>http://www.kenney.nl/?p=638</link>
		<comments>http://www.kenney.nl/?p=638#comments</comments>
		<pubDate>Wed, 01 Sep 2010 14:42:24 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=638</guid>
		<description><![CDATA[20 stages of pure balloon popping extravaganza. I&#8217;m really proud of this game, it&#8217;s smooth and the graphics look great. Well, what are you waiting for? Play it  

Controls: Use your mouse to play this game.
Instructions: Pop the required number of balloons.
Have fun!  
]]></description>
			<content:encoded><![CDATA[<p>20 stages of pure balloon popping extravaganza. I&#8217;m really proud of this game, it&#8217;s smooth and the graphics look great. Well, what are you waiting for? Play it <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="/game.php?id=ballista"><img class="aligncenter" title="ballista" src="http://www.kenney.nl/images/icons/ballista_large.png" alt="" width="235" height="99" /></a></p>
<p><strong>Controls:</strong> Use your mouse to play this game.<br />
<strong>Instructions:</strong> Pop the required number of balloons.</p>
<p>Have fun! <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=638</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spaceship Tutorial Part 4: Scoring &amp; lives</title>
		<link>http://www.kenney.nl/?p=569</link>
		<comments>http://www.kenney.nl/?p=569#comments</comments>
		<pubDate>Sat, 07 Aug 2010 23:00:08 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=569</guid>
		<description><![CDATA[In the final part of the tutorial on how to make a Flash game we&#8217;re gonna finish up the game with scoring, lives and ofcourse a way to lose the game. Make sure you read the previous parts first!

If you haven&#8217;t read the previous parts first, go ahead and read part 1, part 2 and [...]]]></description>
			<content:encoded><![CDATA[<p>In the final part of the tutorial on how to make a Flash game we&#8217;re gonna finish up the game with scoring, lives and ofcourse a way to lose the game. Make sure you read the previous parts first!</p>
<p style="text-align: center;"><a href="http://www.kenney.nl/?p=569#more-569"><img class="aligncenter size-full wp-image-304" title="Spaceship4" src="http://www.kenney.nl/wp-content/uploads/2010/07/spaceship_tutorial_4.jpg" alt="Spaceship3" width="300" height="123" /></a></p>
<p>If you haven&#8217;t read the previous parts first, go ahead and read <a href="http://www.kenney.nl/?p=263">part 1</a>, <a href="http://www.kenney.nl/?p=349">part 2</a> and <a href="http://www.kenney.nl/?p=465">part 3</a> of the tutorial to learn how to create and move the spaceship, make it shoot and spawn enemies.</p>
<p><span id="more-569"></span></p>
<p><strong>Step 1. Preparing the variables</strong></p>
<p>First we have to set-up some variables in which we&#8217;re going to save some information. So let&#8217;s do that first:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">lives = <span style="color: #cc66cc;">3</span>;
score = <span style="color: #cc66cc;">0</span>;</pre></td></tr></table></div>

<p>Place this code on the game frame. You can change the number of lives the player has by simply changing the number 3 in the lives variable.</p>
<p><strong>Step 2. Changing variables based on game events</strong></p>
<p>Now we have to think when the variables need to be changed. Lives should be changed when the player hits an enemy, score should be changed when the player shoots an enemy. Let&#8217;s see if we can code that! Find the following line of code in the script we placed on the player MovieClip:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">hitTest</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">_root</span><span style="color: #66cc66;">&#91;</span><span style="color: #0066CC;">_root</span>.<span style="color: #006600;">enemies</span><span style="color: #66cc66;">&#91;</span>k<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></pre></td></tr></table></div>

<p>Then directly under it add this line:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">_root</span>.<span style="color: #006600;">score</span> += <span style="color: #cc66cc;">10</span>;</pre></td></tr></table></div>

<p>This tells to add 10 to the score variable which is placed in the root (main timeline). Next, find this line in the script on the main game frame:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">_y</span> <span style="color: #66cc66;">&gt;</span> <span style="color: #0066CC;">Stage</span>.<span style="color: #0066CC;">height</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></pre></td></tr></table></div>

<p>and add this <b>above</b> it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">hitTest</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">_root</span>.<span style="color: #006600;">player</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
			<span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span> = <span style="color: #cc66cc;">0</span>; <span style="color: #0066CC;">e</span> <span style="color: #66cc66;">&lt;</span> <span style="color: #0066CC;">_root</span>.<span style="color: #006600;">enemies</span>.<span style="color: #0066CC;">length</span>; <span style="color: #0066CC;">e</span>++<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
				<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">_root</span>.<span style="color: #006600;">enemies</span><span style="color: #66cc66;">&#91;</span><span style="color: #0066CC;">e</span><span style="color: #66cc66;">&#93;</span> == <span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">_name</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
					<span style="color: #0066CC;">_root</span>.<span style="color: #006600;">enemies</span>.<span style="color: #0066CC;">splice</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #66cc66;">&#125;</span>
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
			<span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">removeMovieClip</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			<span style="color: #0066CC;">_root</span>.<span style="color: #006600;">lives</span>--;
		<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>Big block of code but it&#8217;s almost the same as the one under it. So if an enemy hits the player, it should remove itself (from the enemies array AND the stage) and subtract 1 (remember, &#8212; means -1) from the lives variable on the main timeline. But wait a second, the game doesn&#8217;t know what &#8216;player&#8217; is yet so it won&#8217;t work! Click on the player MovieClip and find the &#8216;< Instance Name >&#8216; input field in the properties plane, enter &#8220;player&#8221; there without the quotes.</p>
<p style="text-align: center;"><img src="http://www.kenney.nl/wp-content/uploads/2010/07/instance_name.gif" alt="" title="instance_name" width="262" height="122" class="aligncenter size-full wp-image-576" /></p>
<p>Now we have to make the game check the lives and if the player is out of lives show a game over screen. Find the following line of code on the game frame (should be the bottom line):</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;">enemy_interval = <span style="color: #0066CC;">setInterval</span><span style="color: #66cc66;">&#40;</span>spawnEnemy, <span style="color: #cc66cc;">2000</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>then add this <b>above</b> it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">onEnterFrame</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>lives <span style="color: #66cc66;">&lt;</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		<span style="color: #0066CC;">nextFrame</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p>Some lines of this code may seem familier while others are new, so let me explain:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">onEnterFrame</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></pre></td></tr></table></div>

<p>This tells the game to execute the following lines of code every frame, so if you have set the FPS of the game to 45 then the following code is going to be executed 45 times per second.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>lives <span style="color: #66cc66;">&lt;</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></pre></td></tr></table></div>

<p>If the lives variable is below 0&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">nextFrame</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>Go to the next frame in your game, we&#8217;ll talk about that in a bit.</p>
<p>Okay, the coding is done but we still have to show the player how many lives and what score he or she has. For that we have to add text fields to the game and a second frame.</p>
<p><strong>Step 3. Text fields</strong></p>
<p>Select the Text tool (press T on your keyboard) in the tools panel then click anywhere on the stage and start typing to create a text field. There are options to change the font, color, size and more in the Properties pane (CTRL + F3). Make a couple of text fields like I did:</p>
<p style="text-align: center;"><img src="http://www.kenney.nl/wp-content/uploads/2010/07/textfields.jpg" alt="" title="textfields" width="329" height="239" class="aligncenter size-full wp-image-611" /></p>
<p>Now select the text field under &#8220;Score:&#8221;, it should say 0. Then in the Properties pane change the value Static Text to Dynamic Text and at the &#8216;Var:&#8217; input field fill in &#8220;score&#8221; (without quotations). Also select the text field that says 0 under lives and make it a Dynamic Text with var &#8220;lives&#8221; (again, without quotations <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).</p>
<p style="text-align: center;"><img src="http://www.kenney.nl/wp-content/uploads/2010/07/dynamictext_var.jpg" alt="" title="dynamictext_var" width="452" height="79" class="aligncenter size-full wp-image-612" /></p>
<p>If you test your game now you can see that it actually adds score if you shoot an enemy and it subtracts a life if an enemy hits you!</p>
<p>Now the only thing left to do is create a Game Over screen!</p>
<p><strong>Step 4. Game Over screen</strong></p>
<p>But before we move on creating a new game screen we&#8217;d want the game to keep showing the game frame first, so add this code <strong>above</strong> all the other code on the game screen:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">stop</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>This tells the game to stop at this screen and not move to the Game Over screen until we tell it to do so. While you&#8217;re in the code on the game frame hit F7 to create a new frame (or game screen). On that frame add the following command again:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">stop</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>Now make yourself a nice Game Over screen, you can use text like we did above or draw something using the other tools Flash offers. I made this one (I&#8217;m sure you can do much better!):</p>
<p style="text-align: center;"><img src="http://www.kenney.nl/wp-content/uploads/2010/07/gameover_screen.jpg" alt="" title="gameover_screen" width="329" height="239" class="aligncenter size-full wp-image-632" /></p>
<p>Now test your game again. Oh, what&#8217;s that? There&#8217;s a problem? Well yeah there is. The enemies keep appearing at the Game Over screen! Add this code to the Game Over screen to stop them:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">clearInterval</span><span style="color: #66cc66;">&#40;</span>enemy_interval<span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>This tells Flash to remove the interval we created before that creates the enemies.</p>
<p><strong>Step 5. Testing and finishing</strong></p>
<p>Now press CTRL + ENTER to test the game, you should go to the Game Over screen if you lose all your lives! If you had any problems feel free to ask questions below, if you want a sample download the source file here:</p>
<p style="text-align: center; margin: 20px; display: block;"><a href="http://www.kenney.nl/wp-content/uploads/2010/07/spaceship_tutorial_part4.zip"><img class="size-full wp-image-284  aligncenter" title="Source" src="http://www.kenney.nl/wp-content/uploads/2010/02/1266338959_page_white_flash.png" alt="Source" width="32" height="32" /><br />
Source</a></p>
<p>This is the final part of my tutorial series. If you&#8217;d like to learn more about Flash I recommend you to buy or rent a book. They&#8217;re so much better than any tutorial out there since they&#8217;re well written and explain everything there is to know from A to Z. That&#8217;s how I learned it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=569</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New: Colob</title>
		<link>http://www.kenney.nl/?p=624</link>
		<comments>http://www.kenney.nl/?p=624#comments</comments>
		<pubDate>Fri, 06 Aug 2010 12:11:34 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=624</guid>
		<description><![CDATA[First released for iDevices and now free to play right inside your browser (and Android possibly!). I also talked to the guys who programmed the original Colob game for iPhone/iPod/iPad and they said they&#8217;re gonna develop a Lite version too!

Controls: Use your mouse to play this game.
Instructions: Memorize the tiles and find the right colored [...]]]></description>
			<content:encoded><![CDATA[<p>First released for iDevices and now free to play right inside your browser (and Android possibly!). I also talked to the guys who programmed the original Colob game for iPhone/iPod/iPad and they said they&#8217;re gonna develop a Lite version too!</p>
<p style="text-align: center;"><a href="/game.php?id=colob"><img class="aligncenter" title="hollandvswebb" src="http://www.kenney.nl/images/icons/colob_large.png" alt="" width="235" height="99" /></a></p>
<p><strong>Controls:</strong> Use your mouse to play this game.<br />
<strong>Instructions:</strong> Memorize the tiles and find the right colored ones.</p>
<p>Have fun! <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=624</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming up&#8230;</title>
		<link>http://www.kenney.nl/?p=614</link>
		<comments>http://www.kenney.nl/?p=614#comments</comments>
		<pubDate>Wed, 04 Aug 2010 23:02:02 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=614</guid>
		<description><![CDATA[I&#8217;ve got a few games in the pipeline, they&#8217;re all done and you&#8217;ll be able to play them soon so stay tuned!

You might know Colob as a puzzle game for iPhone/iPod but now it&#8217;ll be playable on PC too! Can you memorize all the tiles? It gets harder each stage! If I would be selling [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a few games in the pipeline, they&#8217;re all done and you&#8217;ll be able to play them soon so stay tuned!</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-619" title="img_shoptycoon" src="http://www.kenney.nl/wp-content/uploads/2010/08/img_collob.png" alt="" width="380" height="105" /></p>
<p style="text-align: left;">You might know <a href="http://www.kenney.nl/colob.php">Colob</a> as a puzzle game for iPhone/iPod but now it&#8217;ll be playable on PC too! Can you memorize all the tiles? It gets harder each stage! If I would be selling this game I would say it stimulates your brain and makes you smarter but I am not. It does though. Dr. Kenney said it.</p>
<p style="text-align: center;"><img class="aligncenter" title="img_shoptycoon" src="../wp-content/uploads/2010/08/img_ballista.png" alt="" width="380" height="105" /></p>
<p style="text-align: left;">In Ballista your task is to shoot a given number of balloons. You can make your ballista stronger between waves and buy extra arrows to help you reach the goal. 20 stages will keep you entertained for hours.</p>
<p style="text-align: center;"><img class="aligncenter" title="img_shoptycoon" src="../wp-content/uploads/2010/08/img_ironchamp2.png" alt="" width="380" height="105" /></p>
<p style="text-align: left;"><a href="http://www.kenney.nl/game.php?id=superironchamp">Super Iron Champ</a> became a huge success and that screams for a sequel! This time around you help customers iron their laundry while upgrading your iron and ironing board. I&#8217;m quite happy about this title because it&#8217;s my first game ever to have voice acting by a <a href="http://pixelcake.net/" target="_blank">lovely lady</a> who is doing a great job giving the game a really sweet tint.</p>
<p style="text-align: center;"><img class="aligncenter" title="img_shoptycoon" src="../wp-content/uploads/2010/08/img_shoptycoon.png" alt="" width="380" height="105" /></p>
<p style="text-align: left;">Although long in production I can proudly say the game is finally done and will be released soon. Build your own shopping street and lure customers in many different shops! Upgrade shops to allow more customers and keep an eye on your funds to become the greatest shopping mogul.</p>
<p style="text-align: center;"><img class="aligncenter" title="img_shoptycoon" src="../wp-content/uploads/2010/08/img_asent.png" alt="" width="380" height="105" /></p>
<p style="text-align: left;">Asent will be an espionage puzzle game seen from the top. I will release more information for it later but as of now that&#8217;s all you get.</p>
<p style="text-align: left;">There are actually many more games in production but let&#8217;s first focus on these games.</p>
<p style="text-align: left;">PS. Tutorial part 4 will also be out soon <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=614</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New: Holland vs. Webb</title>
		<link>http://www.kenney.nl/?p=592</link>
		<comments>http://www.kenney.nl/?p=592#comments</comments>
		<pubDate>Mon, 12 Jul 2010 17:00:37 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=592</guid>
		<description><![CDATA[Howard Webb is on it again and is handing out yellow cards like cake. Make him stop and kick/punch all the cards back to Webb.

Controls: Use the arrow keys to move and SPACE to punch/kick.
Instructions: Let no yellow card pass and punch them back to Webb.
And here are some bonus IM icons:
    [...]]]></description>
			<content:encoded><![CDATA[<p>Howard Webb is on it again and is handing out yellow cards like cake. Make him stop and kick/punch all the cards back to Webb.</p>
<p style="text-align: center;"><a href="/game.php?id=hollandvswebb"><img class="aligncenter" title="hollandvswebb" src="http://www.kenney.nl/images/icons/hollandvswebb_large.png" alt="" /></a></p>
<p><strong>Controls:</strong> Use the arrow keys to move and SPACE to punch/kick.<br />
<strong>Instructions:</strong> Let no yellow card pass and punch them back to Webb.</p>
<p>And here are some bonus IM icons:</p>
<p style="text-align: center;"><img src="http://www.kenney.nl/wp-content/uploads/2010/07/im_avatar_1.jpg" alt="" title="im_avatar_1" width="70" height="70" class="alignnone size-full wp-image-597" /> <img src="http://www.kenney.nl/wp-content/uploads/2010/07/im_avatar_2.jpg" alt="" title="im_avatar_2" width="70" height="70" class="alignnone size-full wp-image-598" /> <img src="http://www.kenney.nl/wp-content/uploads/2010/07/im_avatar_3.jpg" alt="" title="im_avatar_3" width="70" height="70" class="alignnone size-full wp-image-599" /> <img src="http://www.kenney.nl/wp-content/uploads/2010/07/im_avatar_4.jpg" alt="" title="im_avatar_4" width="70" height="70" class="alignnone size-full wp-image-600" /> <img src="http://www.kenney.nl/wp-content/uploads/2010/07/im_avatar_5.jpg" alt="" title="im_avatar_5" width="70" height="70" class="alignnone size-full wp-image-601" /></p>
<p>Enjoy the game <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=592</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8216;Torture Joran&#8217; big hit with Peruvians</title>
		<link>http://www.kenney.nl/?p=580</link>
		<comments>http://www.kenney.nl/?p=580#comments</comments>
		<pubDate>Wed, 07 Jul 2010 06:34:05 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=580</guid>
		<description><![CDATA[
Dutchman Joran van der Sloot has become the unwitting lead player in an internet game currently popular among Peruvians, say local media sources.
The game, ‘Torture Joran’, was put on the market by the website juegator.com. In the game, Van der Sloot is seated on an electric chair. Players try to inflict as many electric shocks [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://www.kenney.nl/wp-content/uploads/2010/07/torture_joran.jpg" alt="" title="torture_joran" width="300" height="123" class="aligncenter size-full wp-image-583" /></p>
<p><strong>Dutchman Joran van der Sloot has become the unwitting lead player in an internet game currently popular among Peruvians, say local media sources.</strong></p>
<p>The game, ‘Torture Joran’, was put on the market by the website <a href="http://www.juegator.com" target="_blank">juegator.com</a>. In the game, Van der Sloot is seated on an electric chair. Players try to inflict as many electric shocks on him as possible. Whoever forces him to make a confession is the winner. Whoever makes him die is the loser.</p>
<p>The 22-year-old man is accused of the 30 May murder of 21-year-old Stephany Flores in the Peruvian capital, Lima. He is currently incarcerated in the city’s Miguel Castro Castro prison. He is also a suspect in the 2005 disappearance of US high school graduate Natalee Holloway, on the Caribbean island of Aruba.</p>
<p>© ANP/AFP</p>
<p style="text-align: center; font-size:18px; padding:0px; margin:0px;"><a href="http://www.juegator.com" target="_blank">Play the game</a></p>
<p style="text-align: center; font-size:10px; padding:0px; margin:0px; margin-bottom:10px"><a href="http://www.kenney.nl/contact.php">Contact the author</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=580</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Armor Picross name&#8230;</title>
		<link>http://www.kenney.nl/?p=558</link>
		<comments>http://www.kenney.nl/?p=558#comments</comments>
		<pubDate>Sun, 20 Jun 2010 19:00:55 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=558</guid>
		<description><![CDATA[Remember Nintendo asked if I could change the name of Armor Picross and I asked you guys to come up with a new name? I finally decided which of the entries was best:

Thanks Brucie for you suggestion, Armor Logic really fits the game   You can play Armor Logic here: Play now. Thanks for [...]]]></description>
			<content:encoded><![CDATA[<p>Remember Nintendo asked if I could change the name of <a href="http://www.kenney.nl/?p=452">Armor Picross</a> and I asked you guys to come up with a new name? I finally decided which of the entries was best:</p>
<p style="text-align: center;"><a href="http://www.kenney.nl/game.php?id=armorlogic2"><img class="size-full wp-image-560  aligncenter" title="armorlogi" src="http://www.kenney.nl/wp-content/uploads/2010/06/armorlogi.png" alt="" width="254" height="121" /></a></p>
<p>Thanks <strong>Brucie</strong> for you suggestion, Armor Logic really fits the game <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You can play Armor Logic here: <a href="http://www.kenney.nl/game.php?id=armorlogic2">Play now</a>. Thanks for your entries!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=558</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New for iPhone/iPod: Colob!</title>
		<link>http://www.kenney.nl/?p=538</link>
		<comments>http://www.kenney.nl/?p=538#comments</comments>
		<pubDate>Tue, 25 May 2010 14:49:02 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=538</guid>
		<description><![CDATA[Colob is not your average sliding block game, in fact, it doesn&#8217;t involve sliding blocks at all! In Colob all you get is a board which consists of colored tiles which will promptly flip to show their grey backs, now it&#8217;s up to you to find all the blocks with a specific color.

There are 4 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Colob is not your average sliding block game, in fact, it doesn&#8217;t involve sliding blocks at all! In Colob all you get is a board which consists of colored tiles which will promptly flip to show their grey backs, now it&#8217;s up to you to find all the blocks with a specific color.</p>
<p style="text-align: center;"><img class="size-full wp-image-549  aligncenter" title="colob_screenshots" src="http://www.kenney.nl/wp-content/uploads/2010/05/colob_screenshots.png" alt="" width="297" height="134" /></p>
<p>There are 4 game modes (Time Attack, Shuffle, Survival and Shuffle Survival) and for $0.99/€0,79 it&#8217;s a steal! Go get it now!</p>
<p style="text-align: center;"><a href="http://itunes.apple.com/app/colob/id373171620?mt=8" target="_blank"><img class="aligncenter" title="colob_logo" src="http://www.kenney.nl/wp-content/uploads/2010/05/colob_logo.png" alt="" width="271" height="82" /></a></p>
<p style="text-align: center;"><a href="http://itunes.apple.com/app/colob/id373171620?mt=8" target="_blank">Download/buy now!</a> (App Store)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=538</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New: Super Mario Bros. Star Scramble 2</title>
		<link>http://www.kenney.nl/?p=523</link>
		<comments>http://www.kenney.nl/?p=523#comments</comments>
		<pubDate>Wed, 12 May 2010 17:16:31 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=523</guid>
		<description><![CDATA[Enjoy the second part of the most popular Mario fan game ever (17 million plays and growing!).

Controls: Use the arrow keys to move and Z or SPACE to jump/select a stage
Instructions: Collect all the shine sprites in a level to open the exit
Have fun!  
]]></description>
			<content:encoded><![CDATA[<p>Enjoy the second part of the most popular Mario fan game ever (17 million plays and growing!).</p>
<p style="text-align: center;"><a href="/game.php?id=supermariostarscramble2"><img class="aligncenter" title="starscramble2" src="http://www.kenney.nl/images/icons/supermariostarscramble2_large.png" alt="" /></a></p>
<p><strong>Controls:</strong> Use the arrow keys to move and Z or SPACE to jump/select a stage<br />
<strong>Instructions:</strong> Collect all the shine sprites in a level to open the exit</p>
<p>Have fun! <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=523</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Super Mario Bros. Star Scramble 2 trailer</title>
		<link>http://www.kenney.nl/?p=513</link>
		<comments>http://www.kenney.nl/?p=513#comments</comments>
		<pubDate>Mon, 10 May 2010 22:20:15 +0000</pubDate>
		<dc:creator>Kenney</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kenney.nl/?p=513</guid>
		<description><![CDATA[Super Mario Bros. Star Scramble 2 trailer, the game will be released this week!   In the meantime, the original game got 17 million views!

]]></description>
			<content:encoded><![CDATA[<p>Super Mario Bros. Star Scramble 2 trailer, the game will be released this week! <img src='http://www.kenney.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  In the meantime, the <a href="http://www.kenney.nl/game.php?id=supermariostarscramble">original</a> game got 17 million views!</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="420" height="260" 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/H7xaACqGCiw&amp;hl=nl_NL&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="420" height="260" src="http://www.youtube.com/v/H7xaACqGCiw&amp;hl=nl_NL&amp;fs=1&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kenney.nl/?feed=rss2&amp;p=513</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
