<?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>FIFE community &#38; development blog &#187; Zero-Projekt</title>
	<atom:link href="http://fifengine.net/category/news/zero-projekt/feed/" rel="self" type="application/rss+xml" />
	<link>http://fifengine.net</link>
	<description></description>
	<lastBuildDate>Fri, 27 Apr 2012 17:19:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Big Changes Ahead</title>
		<link>http://blog.parpg.net/2011/06/big-changes-ahead/</link>
		<comments>http://blog.parpg.net/2011/06/big-changes-ahead/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 09:49:58 +0000</pubDate>
		<dc:creator>Technomage</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://blog.parpg.net/?p=486</guid>
		<description><![CDATA[Greetings PARPGians! Its been a while since we last updated the blog, and boy have a lot of things have happened in that time! I&#8217;ll try and outline what we&#8217;ve accomplished in the past few weeks below. Moving On Up (to Assembla Source Hosting) The single biggest change we&#8217;ve made is that we now use [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings PARPGians!</p>
<p>Its been a while since we last updated the blog, and boy have a lot of things have happened in that time! I&#8217;ll try and outline what we&#8217;ve accomplished in the past few weeks below.</p>
<h2>Moving On Up (to Assembla Source Hosting)</h2>
<p>The single biggest change we&#8217;ve made is that we now use Assembla (<a href="http://assembla.com" >http://assembla.com</a>) as our source repository host. Although Codesion, our previous host, has done a lot for us over the years we decided that it was time to update to a distributed version control system and Codesion&#8217;s offerings in that area simply did not meet our requirements. However, we will continue to use our Trac page for bug tracking and keep our old svn repository online, at least for the foreseeable future.</p>
<p>One of the really neat things about Assembla is that it is built with Agile Programming methods in mind. Our Assembla workspaces provide tools for asynchronous communication, posting progress reports, viewing repository changesets and managing milestones and backlog items. Although we&#8217;re still getting used to Agile methodology, I think that most of us would agree that it has significantly improved our communication and collaboration habits. Overall, we&#8217;ve been very impressed with Assembla&#8217;s free hosting. It is by far the most professional free host we&#8217;ve seen, and has tons of features that we haven&#8217;t even figured out how to use yet!</p>
<p>Feel free to explore our Assembla pages at <a href="http://parpg.assembla.com" >http://parpg.assembla.com</a> and get a feel for how it all works.</p>
<h2>Through the Looking Glass: From Subversion to Mercurial</h2>
<p>One of our primary reasons for changing source hosts was that we wanted to migrate to a distributed version control system (DVCS). Subversion simply wasn&#8217;t scaling well enough for us, since we often had two, three or even more developers working in parallel. Add in the fact that each of those developers was working on some experimental changes and&#8230; well you get the idea.</p>
<p>So we said good bye to subversion (well, sort of &#8211; see below) and migrated our codebase to Mercurial. We narrowed down the field to either GIT or Mercurial, and most of the developers agreed that the learning curve of GIT was too steep compared with Mercurial&#8217;s subversion-like behavior and commands.</p>
<p>There have been a few stumbling blocks to implementing and using the new Mercurial repositories, but we&#8217;re starting to get used to the new workflow. So far the extra flexibility of Mercurial has been very useful, at least to the programmers.</p>
<h2>Three Repositories Are Better Than One</h2>
<p>As if changing our source host and VCS wasn&#8217;t enough, we also split up our codebase into three separate (but related) repositories: <strong>parpg-core</strong>, <strong>parpg-assets</strong> and <strong>parpg-tools</strong>.</p>
<p>The <strong>parpg-core</strong> repository contains the core code framework which makes up the PARPG application, and as such contains the majority of our Python source code.</p>
<p>The <strong>parpg-assets</strong> repository contains all of our game data &#8211; object definitions, sprites, maps, dialogs, music and sound fx, etc. Unlike the other two repositories, which are Mercurial repositories, parpg-assets is a subversion repository (the reason for this is explained below).</p>
<p>Finally, the <strong>parpg-tools</strong> repository contains the source code and supporting assets of the various tools and utilities we&#8217;ve developed over the years to help us create game content.</p>
<p>Our justification for splitting up the code like this was that the binary asset files don&#8217;t change very often and yet comprise the bulk of the storage space (more than 200MB in all), which would have significantly slowed down clones of the repository (DVCSs copy all history in their &#8220;check-outs&#8221;). Compounding this problem was the fact that Mercurial (and most other DVCSs, actually) don&#8217;t handle changes to binary files well and tends to create a lot of bloat with each commit. To solve this issue, we moved most of the binary files into parpg-assets &#8211; a subversion repository which is able to handle changes to binary files much more gracefully.</p>
<p>To prevent parpg-core from drifting apart from parpg-assets and parpg-tools, we made parpg-assets and parpg-tools <em>subrepositories</em> of parpg-core. What this means in practice is that any time you clone parpg-core, you will also clone/checkout parpg-tools and parpg-assets, respectively. This is a feature of Mercurial that was really fleshed out in the 1.7 branch, so you&#8217;ll probably want the most recent version of Mercurial clone parpg-core.</p>
<h2>Distutils, SCons and (now) WAF, oh my!</h2>
<p>Just to make things as confusing as possible we also changed our build system (twice). Originally we used Python&#8217;s distutils installer to build and install everything, but unfortunately as the project grew more complex we discovered that distutils was very difficult to extend and was really starting to slow down development. To be fair the distutils module was developed to build, maintain and install Python libraries, not games with thousands of assets and dozens of tools.</p>
<p>SCons seemed like the natural replacement for distutils, since FIFE (our rendering engine and game framework) uses SCons as its build system. But right from the start we ran into problems with SCons. First, SCons didn&#8217;t like our Python code and we had to write a custom extension to get it to correctly install and optionally compile our Python code. Then SCons didn&#8217;t like our 8,000+ asset files and we had to write ANOTHER extension to get it to correctly copy our assets (and very, very SLOWLY at that). Then SCons had issues verifying which files had changed between the build/installation directory and the source, which required YET ANOTHER extension (you can see where this is going&#8230;).</p>
<p>In the end, we abandoned SCons in favor of its bastard child, WAF. WAF is an old fork of SCons that was developed by a couple of KDE developers. Although much less mature than SCons, WAF has proven to be more than stable enough for our purposes. So far, WAF has been very easy to work with: our current build script is a fraction of the size of our previous SCons buildscript, and yet does everything that SCons could do and more. WAF is also many times faster than SCons, which makes development a lot quicker. Finally, WAF comes as a self-contained script, which means that we distribute WAF along with PARPG &#8211; eliminating any issues with users using an outdated or incompatible version of the build software.</p>
<p>Our WAF build system is still being tested, but it should be in the main parpg-core repository soon!</p>
<h2>The Times They Are A-Changing</h2>
<p>We have even bigger changes planned in the weeks and months ahead, so stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.parpg.net/2011/06/big-changes-ahead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer is coming&#8230; (update)</title>
		<link>http://forums.zero-projekt.net/index.php?topic=141.0</link>
		<comments>http://forums.zero-projekt.net/index.php?topic=141.0#comments</comments>
		<pubDate>Fri, 05 Jun 2009 09:22:16 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://forums.zero-projekt.net/index.php?topic=141.msg869#msg869</guid>
		<description><![CDATA[
...and not only beer gardens are putting their lights back on.<br />In ZERO too, it is now bright as day (or, occasionally dark as night), thanks to our very own God-of-GL, Master of Lights and Overlord-of-OpenGL: Helios&#160; <img src="http://forums.zero-projekt.net/Smileys/classic/zwinkern2.gif" alt="Wink" border="0" />. Spending the past weeks with attempts to implement lighting and&#160; a Day-/Night cycle into the ZERO-world and finally succeeding&#160; while cursing occasionally (read: it wasn&#39;t exactly safe for minors).<br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/worldmap_dark.JPG" target="_blank"><img src="http://zero-projekt.net/files/Galerie/press/tmp/worldmap_dark.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">obscured worldmap</div>&#160; </td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/light.JPG" target="_blank"><img src="http://zero-projekt.net/files/Galerie/press/tmp/light.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Light on</div> </td></tr></table></div><br />Technically spoken, this is done using two methods:<br />First,&#160; the map is shaded using a&#160; command implemented in OpenGL, by which one is able to set strength and color of global light. Secondly, other sources of light are spawned using multi texturing. With this method, multiple textures are blended into one, creating beautiful effects e.g. flickering torches or searchlights. These methods will enable us to increase the atmosphere in ZERO further and offer you a better playing experience. <br />On this occasion, we would like to thank Helios again. You may now buy him a quantity not less than one of his favorite beverage.<br /><br />Two funny fails during the implementation.<br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/crazy_hell.JPG" target="_blank"><img src="http://zero-projekt.net/files/Galerie/press/tmp/crazy_hell.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Zero in hell</div>&#160; </td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/fail.JPG" target="_blank"><img src="http://zero-projekt.net/files/Galerie/press/tmp/fail.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">blue light fail</div> </td></tr></table></div><br />The lights of&#160; this news ain&#39;t out now, because Helios is already planning further optimizations like running multi texturing via different texture units of the graphics card. By using this method, a better performance can be achieved with ZERO, which will come in handy for the planned features.<br /><br />Unfortunately many members of ZERO are currently busy working or studying (I damn thee, exams!)&#160; therefore are unable to commit fully to the development of ZERO. Nevertheless, we are trying to finish the Demo as soon as posible and maybe cast a ray of light into the dark world of ZERO.<br /><br />Greatings <br /><br />the Zero-Projekt Team<br /><br /><span style="font-size: 12pt; line-height: 1.3em;"><b>Watch this screencapture to see the lighting while movement</b></span><br /><ul style="margin-top: 0; margin-bottom: 0;"><li><a href="http://old.zero-projekt.net/screencaptures/1024x_zero_lighting_code.ogg" target="_blank">Zero lighting code at work</a></li></ul><br /><i>Edit: added screencapture</i>
			]]></description>
			<content:encoded><![CDATA[
...and not only beer gardens are putting their lights back on.<br />In ZERO too, it is now bright as day (or, occasionally dark as night), thanks to our very own God-of-GL, Master of Lights and Overlord-of-OpenGL: Helios&nbsp; <img src="http://forums.zero-projekt.net/Smileys/classic/zwinkern2.gif" alt="Wink" border="0" />. Spending the past weeks with attempts to implement lighting and&nbsp; a Day-/Night cycle into the ZERO-world and finally succeeding&nbsp; while cursing occasionally (read: it wasn&#39;t exactly safe for minors).<br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/worldmap_dark.JPG" ><img src="http://zero-projekt.net/files/Galerie/press/tmp/worldmap_dark.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">obscured worldmap</div>&nbsp; </td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/light.JPG" ><img src="http://zero-projekt.net/files/Galerie/press/tmp/light.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Light on</div> </td></tr></table></div><br />Technically spoken, this is done using two methods:<br />First,&nbsp; the map is shaded using a&nbsp; command implemented in OpenGL, by which one is able to set strength and color of global light. Secondly, other sources of light are spawned using multi texturing. With this method, multiple textures are blended into one, creating beautiful effects e.g. flickering torches or searchlights. These methods will enable us to increase the atmosphere in ZERO further and offer you a better playing experience. <br />On this occasion, we would like to thank Helios again. You may now buy him a quantity not less than one of his favorite beverage.<br /><br />Two funny fails during the implementation.<br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/crazy_hell.JPG" ><img src="http://zero-projekt.net/files/Galerie/press/tmp/crazy_hell.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Zero in hell</div>&nbsp; </td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/press/tmp/fail.JPG" ><img src="http://zero-projekt.net/files/Galerie/press/tmp/fail.JPG" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">blue light fail</div> </td></tr></table></div><br />The lights of&nbsp; this news ain&#39;t out now, because Helios is already planning further optimizations like running multi texturing via different texture units of the graphics card. By using this method, a better performance can be achieved with ZERO, which will come in handy for the planned features.<br /><br />Unfortunately many members of ZERO are currently busy working or studying (I damn thee, exams!)&nbsp; therefore are unable to commit fully to the development of ZERO. Nevertheless, we are trying to finish the Demo as soon as posible and maybe cast a ray of light into the dark world of ZERO.<br /><br />Greatings <br /><br />the Zero-Projekt Team<br /><br /><span style="font-size: 12pt; line-height: 1.3em;"><b>Watch this screencapture to see the lighting while movement</b></span><br /><ul style="margin-top: 0; margin-bottom: 0;"><li><a href="http://old.zero-projekt.net/screencaptures/1024x_zero_lighting_code.ogg" >Zero lighting code at work</a></li></ul><br /><i>Edit: added screencapture</i>
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/06/05/summer-is-coming-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://old.zero-projekt.net/screencaptures/1024x_zero_lighting_code.ogg" length="1502" type="audio/ogg" />
		</item>
		<item>
		<title>Zero-Projekt Website &#8211; ready for service</title>
		<link>http://forums.zero-projekt.net/index.php?topic=137.0</link>
		<comments>http://forums.zero-projekt.net/index.php?topic=137.0#comments</comments>
		<pubDate>Fri, 03 Apr 2009 15:31:54 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://forums.zero-projekt.net/index.php?topic=137.msg829#msg829</guid>
		<description><![CDATA[
Some of you might already know it - our website got a complete overhaul. <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> The changes took us nearly a week, but now we have finished - the Zero-Projekt website is back.<br /><br />Many changes and improvements have been made. The forum software has been updated and we switched to a new CMS: <a href="http://redaxo.de" target="_blank">Redaxo</a>. (Which we would like to praise and approve at this opportunity <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> )<br /><br />The main drive for this relaunch was to improve the multilanguage aspect and the amount of information about our project. So you will not only find more articles on the main page - they were also completely translated to English. We also separated the forums from the website and introduced a new design for both the forums and the website.<br /><br />Furthermore, there are some new subdomains available:<br /><br /><ul style="margin-top: 0; margin-bottom: 0;"><li><a href="http://de.zero-projekt.net" target="_blank">de.zero-projekt.net</a> - German Webseite</li><li><a href="http://en.zero-projekt.net" target="_blank">en.zero-projekt.net</a> - English Webseite</li><li><a href="http://forums.zero-projekt.net" target="_blank">forums.zero-projekt.net</a> - Forums</li></ul><br />And - last but not least, we made RSS feeds available for the news (again, for both languages).<br /><br />Special thanks go to our two community members <a href="http://forums.zero-projekt.net/index.php?action=profile;u=128" target="_blank">batgilla</a> and <a href="http://forums.zero-projekt.net/index.php?action=profile;u=73" target="_blank">bumsbomber</a>. Batgilla basically initiated the relaunch, and both he and bumsbomber supported us with ideas, remarks and hints during the whole process. Illustrated, that looked like this:<br /><br /><div align="center"><img src="http://de.zero-projekt.net/files/zero_homepage_redesign_batgilla_bumsbomber.jpg" alt="" border="0" /></div><br />We hope you like our new website and we would also like to encourage you to send us feedback of all kind. If there is something you are still missing or minor hints - it doesn&#39;t matter. Just let us know <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /><br /><br />Cheers,<br />the Zero-Projekt
			]]></description>
			<content:encoded><![CDATA[
Some of you might already know it - our website got a complete overhaul. <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> The changes took us nearly a week, but now we have finished - the Zero-Projekt website is back.<br /><br />Many changes and improvements have been made. The forum software has been updated and we switched to a new CMS: <a href="http://redaxo.de" >Redaxo</a>. (Which we would like to praise and approve at this opportunity <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> )<br /><br />The main drive for this relaunch was to improve the multilanguage aspect and the amount of information about our project. So you will not only find more articles on the main page - they were also completely translated to English. We also separated the forums from the website and introduced a new design for both the forums and the website.<br /><br />Furthermore, there are some new subdomains available:<br /><br /><ul style="margin-top: 0; margin-bottom: 0;"><li><a href="http://de.zero-projekt.net" >de.zero-projekt.net</a> - German Webseite</li><li><a href="http://en.zero-projekt.net" >en.zero-projekt.net</a> - English Webseite</li><li><a href="http://forums.zero-projekt.net" >forums.zero-projekt.net</a> - Forums</li></ul><br />And - last but not least, we made RSS feeds available for the news (again, for both languages).<br /><br />Special thanks go to our two community members <a href="http://forums.zero-projekt.net/index.php?action=profile;u=128" >batgilla</a> and <a href="http://forums.zero-projekt.net/index.php?action=profile;u=73" >bumsbomber</a>. Batgilla basically initiated the relaunch, and both he and bumsbomber supported us with ideas, remarks and hints during the whole process. Illustrated, that looked like this:<br /><br /><div align="center"><img src="http://de.zero-projekt.net/files/zero_homepage_redesign_batgilla_bumsbomber.jpg" alt="" border="0" /></div><br />We hope you like our new website and we would also like to encourage you to send us feedback of all kind. If there is something you are still missing or minor hints - it doesn&#39;t matter. Just let us know <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /><br /><br />Cheers,<br />the Zero-Projekt
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/04/03/zero-projekt-website-ready-for-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zero-Projekt special: Armor system</title>
		<link>http://forums.zero-projekt.net/index.php?topic=132.0</link>
		<comments>http://forums.zero-projekt.net/index.php?topic=132.0#comments</comments>
		<pubDate>Thu, 26 Mar 2009 22:37:54 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://forums.zero-projekt.net/index.php?topic=132.msg767#msg767</guid>
		<description><![CDATA[
We welcome you to our first special about our cRPG project &#34;ZERO - Was vom Morgen blieb&#34;.<br /><br /><div align="center"><img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_armor_special_teaser.png" alt="" width="400" height="218" border="0" /><br /></div><br />Due to the current development status of our project we are finally able to provide detailed informations concerning single aspects of Zero.<br /><br />In contrast to past news, which were genaralised and lacking detail, this news will focus on a single topic - armor.<br /><br />Because the text has gotten a bit big, this is only a teaser with a short overview, a few (but nice) pictures and the link to a screencapture (on YouTube or as a file)<br /><br /><b><span style="text-decoration: underline;">Topics of the armor special:</span></b><br /><br /><ul style="margin-top: 0; margin-bottom: 0;"><li>How does the armor system in ZERO work?</li><li>Grouping armor parts</li><li>Seperation of armors</li><li>Abrasion of armors</li><li>Damage types</li><li>How does the armor protection works?</li><li>Which kind of armors / armor parts will Zero have?</li><li>How do the armor modifications work?</li><li>Does every armor part change the visual appearance of my character?</li><li>Why is Zero not using animation-overlays?</li></ul><br />The armor special can be found <a href="http://forums.zero-projekt.net/index.php?topic=131.0" target="_blank">on our forums</a>, in the section &#34;Zero infos&#34;<br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_leather_coat.gif" alt="" border="0" /><div class="quoteheader">Zitat</div><div class="quote">Leather coat</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_leather_armor.gif" alt="" border="0" /><div class="quoteheader">Zitat</div><div class="quote">Leather armor</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_metal_armor.gif" alt="" border="0" />&#160; <br /><div class="quoteheader">Zitat</div><div class="quote">Metal armor</div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_protective_armor.gif" alt="" border="0" /> <br /><div class="quoteheader">Zitat</div><div class="quote">Combat armor</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_russian_combat_armor.gif" alt="" border="0" />&#160; <br /><div class="quoteheader">Zitat</div><div class="quote">Russian combat armor</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_german_environmental_armor.gif" alt="" border="0" />&#160; <br /><div class="quoteheader">Zitat</div><div class="quote">German environmental suit</div></td></tr></table></div><br /><b><span style="text-decoration: underline;">Video of the armor special</span></b><br /><br /><div align="center"><a href="http://www.youtube.com/watch?v=N13zPqPkruA" target="_blank">http://www.youtube.com/watch?v=N13zPqPkruA</a></div><br /><ul style="margin-top: 0; margin-bottom: 0;"><li> <a href="http://zero-projekt.net/files/screencaptures/1024x_zero_armorsets_up_and_running.ogg" target="_blank">Original version [*.ogg, ~9 MB]</a></li></ul><br />Cheers,<br />the Zero-Projekt team
			]]></description>
			<content:encoded><![CDATA[
We welcome you to our first special about our cRPG project &quot;ZERO - Was vom Morgen blieb&quot;.<br /><br /><div align="center"><img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_armor_special_teaser.png" alt="" width="400" height="218" border="0" /><br /></div><br />Due to the current development status of our project we are finally able to provide detailed informations concerning single aspects of Zero.<br /><br />In contrast to past news, which were genaralised and lacking detail, this news will focus on a single topic - armor.<br /><br />Because the text has gotten a bit big, this is only a teaser with a short overview, a few (but nice) pictures and the link to a screencapture (on YouTube or as a file)<br /><br /><b><span style="text-decoration: underline;">Topics of the armor special:</span></b><br /><br /><ul style="margin-top: 0; margin-bottom: 0;"><li>How does the armor system in ZERO work?</li><li>Grouping armor parts</li><li>Seperation of armors</li><li>Abrasion of armors</li><li>Damage types</li><li>How does the armor protection works?</li><li>Which kind of armors / armor parts will Zero have?</li><li>How do the armor modifications work?</li><li>Does every armor part change the visual appearance of my character?</li><li>Why is Zero not using animation-overlays?</li></ul><br />The armor special can be found <a href="http://forums.zero-projekt.net/index.php?topic=131.0" >on our forums</a>, in the section &quot;Zero infos&quot;<br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_leather_coat.gif" alt="" border="0" /><div class="quoteheader">Zitat</div><div class="quote">Leather coat</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_leather_armor.gif" alt="" border="0" /><div class="quoteheader">Zitat</div><div class="quote">Leather armor</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_metal_armor.gif" alt="" border="0" />&nbsp; <br /><div class="quoteheader">Zitat</div><div class="quote">Metal armor</div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_protective_armor.gif" alt="" border="0" /> <br /><div class="quoteheader">Zitat</div><div class="quote">Combat armor</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_russian_combat_armor.gif" alt="" border="0" />&nbsp; <br /><div class="quoteheader">Zitat</div><div class="quote">Russian combat armor</div></td><td valign="top" style="font: inherit; color: inherit;"> <img src="http://zero-projekt.net/files/Galerie/press/special_zero_armors/zero_german_environmental_armor.gif" alt="" border="0" />&nbsp; <br /><div class="quoteheader">Zitat</div><div class="quote">German environmental suit</div></td></tr></table></div><br /><b><span style="text-decoration: underline;">Video of the armor special</span></b><br /><br /><div align="center"><embed src="http://www.youtube.com/v/N13zPqPkruA&amp;rel=1&amp;fs=1" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="never" wmode="transparent" width="425px" height="350px"><noembed><a href="http://www.youtube.com/watch?v=N13zPqPkruA" >http://www.youtube.com/watch?v=N13zPqPkruA</a></noembed></embed></div><br /><ul style="margin-top: 0; margin-bottom: 0;"><li> <a href="http://zero-projekt.net/files/screencaptures/1024x_zero_armorsets_up_and_running.ogg" >Original version [*.ogg, ~9 MB]</a></li></ul><br />Cheers,<br />the Zero-Projekt team
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/03/26/zero-projekt-special-armor-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://zero-projekt.net/files/screencaptures/1024x_zero_armorsets_up_and_running.ogg" length="1502" type="audio/ogg" />
		</item>
		<item>
		<title>New tiles, armours &#8211; and unicode support!</title>
		<link>http://zero-projekt.net/smf/index.php?topic=125.0</link>
		<comments>http://zero-projekt.net/smf/index.php?topic=125.0#comments</comments>
		<pubDate>Thu, 19 Mar 2009 23:50:54 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://zero-projekt.net/smf/index.php?topic=125.msg751#msg751</guid>
		<description><![CDATA[
Wow, the last few days were just ingenious!<br />It seems that with the snow slowly melting a second spring came along and inspired the team! <br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/artwork/zero_armor_scene.jpg" target="_blank"><img src="http://zero-projekt.net/bilder/artwork/zero_armor_scene.jpg" alt="" width="350" border="0" /></a><br /></div><br />Shadowrunner for instance is not far from completing a brand new set of animations for our armor draft. Furthermore, a new concept for the creation of ground tiles via Blender saw the light of the day and we made a lot of progress concerning the demo story. <br /><br />But not only ZERO benefits from this year&#39;s spring - also FIFE&#39;s development took new things on. Phoku has just begun a new unicode branch and is not far from completion. Vtchill, Cheesesucker and chewie are caringly looking after improvements for the official editor (just to name a few facts). <br /><br />That&#39;s how it is fun, guys - we&#39;re making progress <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> <br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/bilder/artwork/zero_russian_light_armor_datasheet.png" target="_blank"><img src="http://zero-projekt.net/bilder/artwork/.thumbs/zero_russian_light_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Light russian armor</div>&#160; </td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/bilder/artwork/zero_german_armor_datasheet.png" target="_blank"><img src="http://zero-projekt.net/bilder/artwork/.thumbs/zero_german_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Armored german protective gear</div> </td></tr><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_pylons.jpg" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1280x_zero_pylons.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Tile transitions directly rendered using Blender</div></td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_unicode_branche_2.jpg" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_unicode_branche_2.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">FIFE&#39;s GUI can now display for example german umlauts thanks to Phokus&#39;s unicode support</div></td></tr></table></div><br />Cheers to all who made this possible,<br /><br />the Zero-Projekt team<br />
			]]></description>
			<content:encoded><![CDATA[
Wow, the last few days were just ingenious!<br />It seems that with the snow slowly melting a second spring came along and inspired the team! <br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/artwork/zero_armor_scene.jpg" ><img src="http://zero-projekt.net/bilder/artwork/zero_armor_scene.jpg" alt="" width="350" border="0" /></a><br /></div><br />Shadowrunner for instance is not far from completing a brand new set of animations for our armor draft. Furthermore, a new concept for the creation of ground tiles via Blender saw the light of the day and we made a lot of progress concerning the demo story. <br /><br />But not only ZERO benefits from this year&#39;s spring - also FIFE&#39;s development took new things on. Phoku has just begun a new unicode branch and is not far from completion. Vtchill, Cheesesucker and chewie are caringly looking after improvements for the official editor (just to name a few facts). <br /><br />That&#39;s how it is fun, guys - we&#39;re making progress <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> <br /><br /><div align="center"><table ><tr><td valign="top" > <a href="http://zero-projekt.net/bilder/artwork/zero_russian_light_armor_datasheet.png" ><img src="http://zero-projekt.net/bilder/artwork/.thumbs/zero_russian_light_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Light russian armor</div>&nbsp; </td><td valign="top" > <a href="http://zero-projekt.net/bilder/artwork/zero_german_armor_datasheet.png" ><img src="http://zero-projekt.net/bilder/artwork/.thumbs/zero_german_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Armored german protective gear</div> </td></tr><tr><td valign="top" > <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_pylons.jpg" ><img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1280x_zero_pylons.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Tile transitions directly rendered using Blender</div></td><td valign="top" > <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_unicode_branche_2.jpg" ><img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_unicode_branche_2.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">FIFE&#39;s GUI can now display for example german umlauts thanks to Phokus&#39;s unicode support</div></td></tr></table></div><br />Cheers to all who made this possible,<br /><br />the Zero-Projekt team<br />
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/03/20/new-tiles-armours-and-unicode-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New tiles, armours &#8211; and unicode support!</title>
		<link>http://forums.zero-projekt.net/index.php?topic=125.0</link>
		<comments>http://forums.zero-projekt.net/index.php?topic=125.0#comments</comments>
		<pubDate>Thu, 19 Mar 2009 23:50:54 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://forums.zero-projekt.net/index.php?topic=125.msg751#msg751</guid>
		<description><![CDATA[
Wow, the last few days were just ingenious!<br />It seems that with the snow slowly melting a second spring came along and inspired the team! <br /><br /><div align="center"><a href="http://zero-projekt.net/files/Galerie/artwork/zero_armor_scene.jpg" target="_blank"><img src="http://zero-projekt.net/files/Galerie/artwork/zero_armor_scene.jpg" alt="" width="350" border="0" /></a><br /></div><br />Shadowrunner for instance is not far from completing a brand new set of animations for our armor draft. Furthermore, a new concept for the creation of ground tiles via Blender saw the light of the day and we made a lot of progress concerning the demo story. <br /><br />But not only ZERO benefits from this year&#39;s spring - also FIFE&#39;s development took new things on. Phoku has just begun a new unicode branch and is not far from completion. Vtchill, Cheesesucker and chewie are caringly looking after improvements for the official editor (just to name a few facts). <br /><br />That&#39;s how it is fun, guys - we&#39;re making progress <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> <br /><br /><div align="center"><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/artwork/zero_russian_light_armor_datasheet.png" target="_blank"><img src="http://zero-projekt.net/files/Galerie/artwork/.thumbs/zero_russian_light_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Light russian armor</div>&#160; </td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/artwork/zero_german_armor_datasheet.png" target="_blank"><img src="http://zero-projekt.net/files/Galerie/artwork/.thumbs/zero_german_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Armored german protective gear</div> </td></tr><tr><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/screenshots/1280x_zero_pylons.jpg" target="_blank"><img src="http://zero-projekt.net/files/Galerie/screenshots/.thumbs/1280x_zero_pylons.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Tile transitions directly rendered using Blender</div></td><td valign="top" style="font: inherit; color: inherit;"> <a href="http://zero-projekt.net/files/Galerie/screenshots/1024x_zero_unicode_branche_2.jpg" target="_blank"><img src="http://zero-projekt.net/files/Galerie/screenshots/.thumbs/1024x_zero_unicode_branche_2.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">FIFE&#39;s GUI can now display for example german umlauts thanks to Phokus&#39;s unicode support</div></td></tr></table></div><br />Cheers to all who made this possible,<br /><br />the Zero-Projekt team<br />
			]]></description>
			<content:encoded><![CDATA[
Wow, the last few days were just ingenious!<br />It seems that with the snow slowly melting a second spring came along and inspired the team! <br /><br /><div align="center"><a href="http://zero-projekt.net/files/Galerie/artwork/zero_armor_scene.jpg" ><img src="http://zero-projekt.net/files/Galerie/artwork/zero_armor_scene.jpg" alt="" width="350" border="0" /></a><br /></div><br />Shadowrunner for instance is not far from completing a brand new set of animations for our armor draft. Furthermore, a new concept for the creation of ground tiles via Blender saw the light of the day and we made a lot of progress concerning the demo story. <br /><br />But not only ZERO benefits from this year&#39;s spring - also FIFE&#39;s development took new things on. Phoku has just begun a new unicode branch and is not far from completion. Vtchill, Cheesesucker and chewie are caringly looking after improvements for the official editor (just to name a few facts). <br /><br />That&#39;s how it is fun, guys - we&#39;re making progress <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /> <br /><br /><div align="center"><table ><tr><td valign="top" > <a href="http://zero-projekt.net/files/Galerie/artwork/zero_russian_light_armor_datasheet.png" ><img src="http://zero-projekt.net/files/Galerie/artwork/.thumbs/zero_russian_light_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Light russian armor</div>&nbsp; </td><td valign="top" > <a href="http://zero-projekt.net/files/Galerie/artwork/zero_german_armor_datasheet.png" ><img src="http://zero-projekt.net/files/Galerie/artwork/.thumbs/zero_german_armor_datasheet.png" alt="" width="250" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Armored german protective gear</div> </td></tr><tr><td valign="top" > <a href="http://zero-projekt.net/files/Galerie/screenshots/1280x_zero_pylons.jpg" ><img src="http://zero-projekt.net/files/Galerie/screenshots/.thumbs/1280x_zero_pylons.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">Tile transitions directly rendered using Blender</div></td><td valign="top" > <a href="http://zero-projekt.net/files/Galerie/screenshots/1024x_zero_unicode_branche_2.jpg" ><img src="http://zero-projekt.net/files/Galerie/screenshots/.thumbs/1024x_zero_unicode_branche_2.jpg" alt="" border="0" /></a><br /><div class="quoteheader">Zitat</div><div class="quote">FIFE&#39;s GUI can now display for example german umlauts thanks to Phokus&#39;s unicode support</div></td></tr></table></div><br />Cheers to all who made this possible,<br /><br />the Zero-Projekt team<br />
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/03/20/new-tiles-armours-and-unicode-support-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 years Zero-Projekt &#8211; and we&#8217;re still here</title>
		<link>http://zero-projekt.net/smf/index.php?topic=122.0</link>
		<comments>http://zero-projekt.net/smf/index.php?topic=122.0#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:36:37 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://zero-projekt.net/smf/index.php?topic=122.msg747#msg747</guid>
		<description><![CDATA[
Three years ago &#34;ZERO: Was vom Morgen blieb&#34; (at that time Fallout:Zero) was literally raised from the dead.<br /><br />A lot happened since then and more than one time the team had to learn that there&#39;s a lot more needed than plain enthusiasm to develop a game. And even today we&#39;re not armed against misguided development and we constantly learn something new each day.<br /><br />However let&#39;s stop this, since noones is really interested in anyways. Here are the hard facts what we did last week - and of course the big &#34;All the best for your third birthday, ZERO!&#34;<br /><br /><div align="center"> <a href="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" target="_blank"> <img src="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" alt="" width="300" border="0" /> </a> </div><br /><br /><span style="text-decoration: underline;"><b>Changes</b></span><br />So what has changed since our last news? A lot...<br /><br />We revamped and changed the whole main plot for the better and adjusted the prehistory accordingly. More than before we tried to achieve even more vitality and a greater replayability. Also the ruleset has been worked on assiduously and we reasonably made some changes in the matter of balancing, some skills have been combined, partially assigned to different skill groups and the armour system has been revised. <br /><br />In the matter of coding there are also several improvements and innovations. Our drag&#38;drop-system has been rewritten and enhanced and a really persistant bug (which nearly lurked us into going mad and expressed itself in a flawed display of object-tiles) has been corrected thanks to our intensive efforts. However, removing this bug also required huge changes on our object geometry, which forced our graphic artists to rerender every single object and make them fit for the new geometry. <br />Furthermore our KI-development introduced the agenda-system which provides a great step into the direction we head for. The agenda-system controls the daily routine of every npc dependent on the time of the day. Thus the NPC goes for example hunting, back home, or on patrol (provided he has a patrol route). The agenda always takes action, if the NPC doesn&#39;t have anything else to do - thus is not engaged in any actions like fighting or other interactions with the player. And that&#39;s the big advantage of this system: it&#39;s controlled by parameters. There&#39;s no need to write scripts and - simplified expressed - the designers can just klick their way to the required parameters for the agenda. Admittedly the agenda still needs a lot of work. So for example the KI for fights and the fuzzy logic are still missing until the agenda is ready for the game. <br /><br />Furthermore, the team&#39;s prayers for more tools was just answered by our coders - for a short time, Zedit is in development now. Zedit is an in-house development of an editor and is based on the FIFE-core and is meant to close the gap between mapeditor and framework. Both items, NPCs and map metainformation like triggers and dialog trees should be possible to be edited and created later on. <br /><br /><span style="text-decoration: underline;"><b>The Demo:</b></span><br />We&#39;re still in the middle of developing a playable demo. Unfortunately the whole development drags out pretty much. This has mainly personal reasons. Because of the fact that our team is very small, if a member drops out for a while because of real life this has a devastating impact. Although we try to compensate the deficity it hardly works at the moment. That&#39;s why we can&#39;t avoid a halt in some areas which leads to a breakdown in development and thus to a temporal postponement. <br /><br />At the moment by no stretch of imagination we can tell when we&#39;ll have a playable demo ready. We just lack the manpower to further our development in a faster way. <br /><br />If someone wants to support us - we&#39;re still searching for capable contributors in all areas of development (coding, graphics, story, quest- and dialog design), who want to participate in the development of ZERO. Who wants to contribute actively can always join our public channel (attainable through the direct link on our website or irc.chatspike.net #zero-projekt)<br /><br /><span style="text-decoration: underline;"><b>Screenshots:</b></span><br />Of course we want to present you some new screenshots at this point - and further down you can find moving images <img src="http://zero-projekt.net/smf/Smileys/classic/zwinkern2.gif" alt="Wink" border="0" /> <br /><br /><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A nice version of trinity made by our graphic artist James</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A test with clouds - they&#39;ll possibly just used on the world map as the effect doesn&#39;t really work on other maps (the clouds fly too low)</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Finally our main menu got some advancements too <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /></b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A few smaller mapobjects placed on tables</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A small lumberjack camp in the woods</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Junk - if it can ever be repaired again..? ^^</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Restructured skill groups</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Revised building concept - still WiP but you can guess the direction it heads for</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Dead end, zombie! Here are the ZERO rocks (at the moment of the screenshot we couldn&#39;t tile them, but now it works)</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Some new items for our inventory</b></span></div></td></tr></table><br />As a special delicacy we want to present you a kind of video diary - it contains a lot of screencaptures we took lately. <br />You can follow the development with these screencaptures and they show several stations of development. The small films are categorized to ensure a better overview.<br /><br />Note: The screencaptures are in .ogg-format. You can stream them with the VLC mediaplayer plugin for Firefox without downloading them. If you&#39;re using IE... that&#39;s your own fault. <img src="http://zero-projekt.net/smf/Smileys/classic/zunge.gif" alt="Tongue" border="0" /><br /><br />You find the screencapture gallery here: <a href="http://zero-projekt.net/files/screencaptures/" target="_blank">http://zero-projekt.net/files/screencaptures/</a><br /><br />Despite the lack of manpower and the little objects thrown in our way, we&#39;re still on target - even if we couldn&#39;t stay on schedule all the time. However this doesn&#39;t prevent us from celebrating ZERO&#39;s third birthday. <br />Having said this: Happy Birthday!<br /><br />Regards, <br />Zero-Projekt Team
			]]></description>
			<content:encoded><![CDATA[
Three years ago &quot;ZERO: Was vom Morgen blieb&quot; (at that time Fallout:Zero) was literally raised from the dead.<br /><br />A lot happened since then and more than one time the team had to learn that there&#39;s a lot more needed than plain enthusiasm to develop a game. And even today we&#39;re not armed against misguided development and we constantly learn something new each day.<br /><br />However let&#39;s stop this, since noones is really interested in anyways. Here are the hard facts what we did last week - and of course the big &quot;All the best for your third birthday, ZERO!&quot;<br /><br /><div align="center"> <a href="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" > <img src="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" alt="" width="300" border="0" /> </a> </div><br /><br /><span ><b>Changes</b></span><br />So what has changed since our last news? A lot...<br /><br />We revamped and changed the whole main plot for the better and adjusted the prehistory accordingly. More than before we tried to achieve even more vitality and a greater replayability. Also the ruleset has been worked on assiduously and we reasonably made some changes in the matter of balancing, some skills have been combined, partially assigned to different skill groups and the armour system has been revised. <br /><br />In the matter of coding there are also several improvements and innovations. Our drag&amp;drop-system has been rewritten and enhanced and a really persistant bug (which nearly lurked us into going mad and expressed itself in a flawed display of object-tiles) has been corrected thanks to our intensive efforts. However, removing this bug also required huge changes on our object geometry, which forced our graphic artists to rerender every single object and make them fit for the new geometry. <br />Furthermore our KI-development introduced the agenda-system which provides a great step into the direction we head for. The agenda-system controls the daily routine of every npc dependent on the time of the day. Thus the NPC goes for example hunting, back home, or on patrol (provided he has a patrol route). The agenda always takes action, if the NPC doesn&#39;t have anything else to do - thus is not engaged in any actions like fighting or other interactions with the player. And that&#39;s the big advantage of this system: it&#39;s controlled by parameters. There&#39;s no need to write scripts and - simplified expressed - the designers can just klick their way to the required parameters for the agenda. Admittedly the agenda still needs a lot of work. So for example the KI for fights and the fuzzy logic are still missing until the agenda is ready for the game. <br /><br />Furthermore, the team&#39;s prayers for more tools was just answered by our coders - for a short time, Zedit is in development now. Zedit is an in-house development of an editor and is based on the FIFE-core and is meant to close the gap between mapeditor and framework. Both items, NPCs and map metainformation like triggers and dialog trees should be possible to be edited and created later on. <br /><br /><span ><b>The Demo:</b></span><br />We&#39;re still in the middle of developing a playable demo. Unfortunately the whole development drags out pretty much. This has mainly personal reasons. Because of the fact that our team is very small, if a member drops out for a while because of real life this has a devastating impact. Although we try to compensate the deficity it hardly works at the moment. That&#39;s why we can&#39;t avoid a halt in some areas which leads to a breakdown in development and thus to a temporal postponement. <br /><br />At the moment by no stretch of imagination we can tell when we&#39;ll have a playable demo ready. We just lack the manpower to further our development in a faster way. <br /><br />If someone wants to support us - we&#39;re still searching for capable contributors in all areas of development (coding, graphics, story, quest- and dialog design), who want to participate in the development of ZERO. Who wants to contribute actively can always join our public channel (attainable through the direct link on our website or irc.chatspike.net #zero-projekt)<br /><br /><span ><b>Screenshots:</b></span><br />Of course we want to present you some new screenshots at this point - and further down you can find moving images <img src="http://zero-projekt.net/smf/Smileys/classic/zwinkern2.gif" alt="Wink" border="0" /> <br /><br /><table ><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A nice version of trinity made by our graphic artist James</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A test with clouds - they&#39;ll possibly just used on the world map as the effect doesn&#39;t really work on other maps (the clouds fly too low)</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Finally our main menu got some advancements too <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /></b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A few smaller mapobjects placed on tables</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A small lumberjack camp in the woods</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Junk - if it can ever be repaired again..? ^^</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Restructured skill groups</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Revised building concept - still WiP but you can guess the direction it heads for</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Dead end, zombie! Here are the ZERO rocks (at the moment of the screenshot we couldn&#39;t tile them, but now it works)</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Some new items for our inventory</b></span></div></td></tr></table><br />As a special delicacy we want to present you a kind of video diary - it contains a lot of screencaptures we took lately. <br />You can follow the development with these screencaptures and they show several stations of development. The small films are categorized to ensure a better overview.<br /><br />Note: The screencaptures are in .ogg-format. You can stream them with the VLC mediaplayer plugin for Firefox without downloading them. If you&#39;re using IE... that&#39;s your own fault. <img src="http://zero-projekt.net/smf/Smileys/classic/zunge.gif" alt="Tongue" border="0" /><br /><br />You find the screencapture gallery here: <a href="http://zero-projekt.net/files/screencaptures/" >http://zero-projekt.net/files/screencaptures/</a><br /><br />Despite the lack of manpower and the little objects thrown in our way, we&#39;re still on target - even if we couldn&#39;t stay on schedule all the time. However this doesn&#39;t prevent us from celebrating ZERO&#39;s third birthday. <br />Having said this: Happy Birthday!<br /><br />Regards, <br />Zero-Projekt Team
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/03/10/3-years-zero-projekt-and-were-still-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 years Zero-Projekt &#8211; and we&#8217;re still here</title>
		<link>http://forums.zero-projekt.net/index.php?topic=122.0</link>
		<comments>http://forums.zero-projekt.net/index.php?topic=122.0#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:36:37 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://forums.zero-projekt.net/index.php?topic=122.msg747#msg747</guid>
		<description><![CDATA[
Three years ago &#34;ZERO: Was vom Morgen blieb&#34; (at that time Fallout:Zero) was literally raised from the dead.<br /><br />A lot happened since then and more than one time the team had to learn that there&#39;s a lot more needed than plain enthusiasm to develop a game. And even today we&#39;re not armed against misguided development and we constantly learn something new each day.<br /><br />However let&#39;s stop this, since noones is really interested in anyways. Here are the hard facts what we did last week - and of course the big &#34;All the best for your third birthday, ZERO!&#34;<br /><br /><div align="center"> <a href="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" target="_blank"> <img src="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" alt="" width="300" border="0" /> </a> </div><br /><br /><span style="text-decoration: underline;"><b>Changes</b></span><br />So what has changed since our last news? A lot...<br /><br />We revamped and changed the whole main plot for the better and adjusted the prehistory accordingly. More than before we tried to achieve even more vitality and a greater replayability. Also the ruleset has been worked on assiduously and we reasonably made some changes in the matter of balancing, some skills have been combined, partially assigned to different skill groups and the armour system has been revised. <br /><br />In the matter of coding there are also several improvements and innovations. Our drag&#38;drop-system has been rewritten and enhanced and a really persistant bug (which nearly lurked us into going mad and expressed itself in a flawed display of object-tiles) has been corrected thanks to our intensive efforts. However, removing this bug also required huge changes on our object geometry, which forced our graphic artists to rerender every single object and make them fit for the new geometry. <br />Furthermore our KI-development introduced the agenda-system which provides a great step into the direction we head for. The agenda-system controls the daily routine of every npc dependent on the time of the day. Thus the NPC goes for example hunting, back home, or on patrol (provided he has a patrol route). The agenda always takes action, if the NPC doesn&#39;t have anything else to do - thus is not engaged in any actions like fighting or other interactions with the player. And that&#39;s the big advantage of this system: it&#39;s controlled by parameters. There&#39;s no need to write scripts and - simplified expressed - the designers can just klick their way to the required parameters for the agenda. Admittedly the agenda still needs a lot of work. So for example the KI for fights and the fuzzy logic are still missing until the agenda is ready for the game. <br /><br />Furthermore, the team&#39;s prayers for more tools was just answered by our coders - for a short time, Zedit is in development now. Zedit is an in-house development of an editor and is based on the FIFE-core and is meant to close the gap between mapeditor and framework. Both items, NPCs and map metainformation like triggers and dialog trees should be possible to be edited and created later on. <br /><br /><span style="text-decoration: underline;"><b>The Demo:</b></span><br />We&#39;re still in the middle of developing a playable demo. Unfortunately the whole development drags out pretty much. This has mainly personal reasons. Because of the fact that our team is very small, if a member drops out for a while because of real life this has a devastating impact. Although we try to compensate the deficity it hardly works at the moment. That&#39;s why we can&#39;t avoid a halt in some areas which leads to a breakdown in development and thus to a temporal postponement. <br /><br />At the moment by no stretch of imagination we can tell when we&#39;ll have a playable demo ready. We just lack the manpower to further our development in a faster way. <br /><br />If someone wants to support us - we&#39;re still searching for capable contributors in all areas of development (coding, graphics, story, quest- and dialog design), who want to participate in the development of ZERO. Who wants to contribute actively can always join our public channel (attainable through the direct link on our website or irc.chatspike.net #zero-projekt)<br /><br /><span style="text-decoration: underline;"><b>Screenshots:</b></span><br />Of course we want to present you some new screenshots at this point - and further down you can find moving images <img src="http://forums.zero-projekt.net/Smileys/classic/zwinkern2.gif" alt="Wink" border="0" /> <br /><br /><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A nice version of trinity made by our graphic artist James</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A test with clouds - they&#39;ll possibly just used on the world map as the effect doesn&#39;t really work on other maps (the clouds fly too low)</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Finally our main menu got some advancements too <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /></b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A few smaller mapobjects placed on tables</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>A small lumberjack camp in the woods</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Junk - if it can ever be repaired again..? ^^</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Restructured skill groups</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Revised building concept - still WiP but you can guess the direction it heads for</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Dead end, zombie! Here are the ZERO rocks (at the moment of the screenshot we couldn&#39;t tile them, but now it works)</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Some new items for our inventory</b></span></div></td></tr></table><br />As a special delicacy we want to present you a kind of video diary - it contains a lot of screencaptures we took lately. <br />You can follow the development with these screencaptures and they show several stations of development. The small films are categorized to ensure a better overview.<br /><br />Note: The screencaptures are in .ogg-format. You can stream them with the VLC mediaplayer plugin for Firefox without downloading them. If you&#39;re using IE... that&#39;s your own fault. <img src="http://forums.zero-projekt.net/Smileys/classic/zunge.gif" alt="Tongue" border="0" /><br /><br />You find the screencapture gallery here: <a href="http://zero-projekt.net/files/screencaptures/" target="_blank">http://zero-projekt.net/files/screencaptures/</a><br /><br />Despite the lack of manpower and the little objects thrown in our way, we&#39;re still on target - even if we couldn&#39;t stay on schedule all the time. However this doesn&#39;t prevent us from celebrating ZERO&#39;s third birthday. <br />Having said this: Happy Birthday!<br /><br />Regards, <br />Zero-Projekt Team
			]]></description>
			<content:encoded><![CDATA[
Three years ago &quot;ZERO: Was vom Morgen blieb&quot; (at that time Fallout:Zero) was literally raised from the dead.<br /><br />A lot happened since then and more than one time the team had to learn that there&#39;s a lot more needed than plain enthusiasm to develop a game. And even today we&#39;re not armed against misguided development and we constantly learn something new each day.<br /><br />However let&#39;s stop this, since noones is really interested in anyways. Here are the hard facts what we did last week - and of course the big &quot;All the best for your third birthday, ZERO!&quot;<br /><br /><div align="center"> <a href="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" > <img src="http://zero-projekt.net/bilder/artwork/3Jahre_zero_1.png" alt="" width="300" border="0" /> </a> </div><br /><br /><span ><b>Changes</b></span><br />So what has changed since our last news? A lot...<br /><br />We revamped and changed the whole main plot for the better and adjusted the prehistory accordingly. More than before we tried to achieve even more vitality and a greater replayability. Also the ruleset has been worked on assiduously and we reasonably made some changes in the matter of balancing, some skills have been combined, partially assigned to different skill groups and the armour system has been revised. <br /><br />In the matter of coding there are also several improvements and innovations. Our drag&amp;drop-system has been rewritten and enhanced and a really persistant bug (which nearly lurked us into going mad and expressed itself in a flawed display of object-tiles) has been corrected thanks to our intensive efforts. However, removing this bug also required huge changes on our object geometry, which forced our graphic artists to rerender every single object and make them fit for the new geometry. <br />Furthermore our KI-development introduced the agenda-system which provides a great step into the direction we head for. The agenda-system controls the daily routine of every npc dependent on the time of the day. Thus the NPC goes for example hunting, back home, or on patrol (provided he has a patrol route). The agenda always takes action, if the NPC doesn&#39;t have anything else to do - thus is not engaged in any actions like fighting or other interactions with the player. And that&#39;s the big advantage of this system: it&#39;s controlled by parameters. There&#39;s no need to write scripts and - simplified expressed - the designers can just klick their way to the required parameters for the agenda. Admittedly the agenda still needs a lot of work. So for example the KI for fights and the fuzzy logic are still missing until the agenda is ready for the game. <br /><br />Furthermore, the team&#39;s prayers for more tools was just answered by our coders - for a short time, Zedit is in development now. Zedit is an in-house development of an editor and is based on the FIFE-core and is meant to close the gap between mapeditor and framework. Both items, NPCs and map metainformation like triggers and dialog trees should be possible to be edited and created later on. <br /><br /><span ><b>The Demo:</b></span><br />We&#39;re still in the middle of developing a playable demo. Unfortunately the whole development drags out pretty much. This has mainly personal reasons. Because of the fact that our team is very small, if a member drops out for a while because of real life this has a devastating impact. Although we try to compensate the deficity it hardly works at the moment. That&#39;s why we can&#39;t avoid a halt in some areas which leads to a breakdown in development and thus to a temporal postponement. <br /><br />At the moment by no stretch of imagination we can tell when we&#39;ll have a playable demo ready. We just lack the manpower to further our development in a faster way. <br /><br />If someone wants to support us - we&#39;re still searching for capable contributors in all areas of development (coding, graphics, story, quest- and dialog design), who want to participate in the development of ZERO. Who wants to contribute actively can always join our public channel (attainable through the direct link on our website or irc.chatspike.net #zero-projekt)<br /><br /><span ><b>Screenshots:</b></span><br />Of course we want to present you some new screenshots at this point - and further down you can find moving images <img src="http://forums.zero-projekt.net/Smileys/classic/zwinkern2.gif" alt="Wink" border="0" /> <br /><br /><table ><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_trinity.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A nice version of trinity made by our graphic artist James</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_clouds.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A test with clouds - they&#39;ll possibly just used on the world map as the effect doesn&#39;t really work on other maps (the clouds fly too low)</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_main_menu2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Finally our main menu got some advancements too <img src="http://forums.zero-projekt.net/Smileys/classic/smiley.gif" alt="Smiley" border="0" /></b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1680x_zero_oillamps_jerrycans.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A few smaller mapobjects placed on tables</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_chewies_place.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>A small lumberjack camp in the woods</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_bikes.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Junk - if it can ever be repaired again..? ^^</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_new_skill_organisation.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Restructured skill groups</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_building_dummy_floor.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Revised building concept - still WiP but you can guess the direction it heads for</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1024x_zero_rocks2.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Dead end, zombie! Here are the ZERO rocks (at the moment of the screenshot we couldn&#39;t tile them, but now it works)</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/1280x_zero_new_items.jpg" alt="" width="200" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Some new items for our inventory</b></span></div></td></tr></table><br />As a special delicacy we want to present you a kind of video diary - it contains a lot of screencaptures we took lately. <br />You can follow the development with these screencaptures and they show several stations of development. The small films are categorized to ensure a better overview.<br /><br />Note: The screencaptures are in .ogg-format. You can stream them with the VLC mediaplayer plugin for Firefox without downloading them. If you&#39;re using IE... that&#39;s your own fault. <img src="http://forums.zero-projekt.net/Smileys/classic/zunge.gif" alt="Tongue" border="0" /><br /><br />You find the screencapture gallery here: <a href="http://zero-projekt.net/files/screencaptures/" >http://zero-projekt.net/files/screencaptures/</a><br /><br />Despite the lack of manpower and the little objects thrown in our way, we&#39;re still on target - even if we couldn&#39;t stay on schedule all the time. However this doesn&#39;t prevent us from celebrating ZERO&#39;s third birthday. <br />Having said this: Happy Birthday!<br /><br />Regards, <br />Zero-Projekt Team
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2009/03/10/3-years-zero-projekt-and-were-still-here-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you enter a building&#8230;.</title>
		<link>http://zero-projekt.net/smf/index.php?topic=115.0</link>
		<comments>http://zero-projekt.net/smf/index.php?topic=115.0#comments</comments>
		<pubDate>Sat, 27 Sep 2008 13:57:29 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://zero-projekt.net/smf/index.php?topic=115.msg693#msg693</guid>
		<description><![CDATA[
...loot it! Zero now has locked containers, which you can open - if you have the proper skill and pass the skill check.<br /><br />Here is a screencapture how this works for now:<br /><div align="center"><a href="http://zero-projekt.net/files/screencaptures/800x_zero_lockpick.ogg" target="_blank">Zero - unbar locked containers [*.ogg, ~3MB]</a><br /><span style="font-size: 8pt; line-height: 1.3em;"><i>* best viewed with VLC</i></span><br /></div><br />Furthermore, we made some improvements on the GUI:<br /><ul style="margin-top: 0; margin-bottom: 0;"><li>the inventory now has a hover effect if you move the cursor upon an armorslot. The character wire on the right sight indicates which area of the body is affected if you place the proper armor item into this slot</li><li>the layout of the charscreen has been improved</li><li>both the EiRi and the HUD have been improved in terms of the textures and the 3D modells</li></ul><br />Besides the visual changes, the programmers are of course hard-working to fix bugs both in our framework and FIFE itself - as well as improving both and developing new features. (e. g. particle system for FIFE, increasing performance etc.)<br /><br /><table style="font: inherit; color: inherit;"><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_inventory_slot_hover1.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_inventory_slot_hover1.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>The new hover effects for armorslots, here: bodyarmor</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_inventory_slot_hover2.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_inventory_slot_hover2.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>The new hover effects for armorslots, here: bracers</b></span></div></td></tr><tr><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_building.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_building.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Test of a first &#34;complete&#34; building with tiled walls - including a front- and backside and some established objects</b></span></div></td><td valign="top" style="font: inherit; color: inherit;"><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_eiri_charscreen.jpg" target="_blank"> <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_eiri_charscreen.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span style="font-size: 7pt; line-height: 1.3em;"><b>Improved layout for the charscreen, better look for both EiRi and HUD in general</b></span></div></td></tr></table><br />Regards,<br />The Zero-Projekt team
			]]></description>
			<content:encoded><![CDATA[
...loot it! Zero now has locked containers, which you can open - if you have the proper skill and pass the skill check.<br /><br />Here is a screencapture how this works for now:<br /><div align="center"><a href="http://zero-projekt.net/files/screencaptures/800x_zero_lockpick.ogg" >Zero - unbar locked containers [*.ogg, ~3MB]</a><br /><span ><i>* best viewed with VLC</i></span><br /></div><br />Furthermore, we made some improvements on the GUI:<br /><ul ><li>the inventory now has a hover effect if you move the cursor upon an armorslot. The character wire on the right sight indicates which area of the body is affected if you place the proper armor item into this slot</li><li>the layout of the charscreen has been improved</li><li>both the EiRi and the HUD have been improved in terms of the textures and the 3D modells</li></ul><br />Besides the visual changes, the programmers are of course hard-working to fix bugs both in our framework and FIFE itself - as well as improving both and developing new features. (e. g. particle system for FIFE, increasing performance etc.)<br /><br /><table ><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_inventory_slot_hover1.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_inventory_slot_hover1.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>The new hover effects for armorslots, here: bodyarmor</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_inventory_slot_hover2.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_inventory_slot_hover2.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>The new hover effects for armorslots, here: bracers</b></span></div></td></tr><tr><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_building.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_building.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Test of a first &quot;complete&quot; building with tiled walls - including a front- and backside and some established objects</b></span></div></td><td valign="top" ><div align="center"> <a href="http://zero-projekt.net/bilder/screenshots/1024x_zero_eiri_charscreen.jpg" > <img src="http://zero-projekt.net/bilder/screenshots/.thumbs/1024x_zero_eiri_charscreen.jpg" alt="" border="0" /> </a> </div><div class="quoteheader">Zitat</div><div class="quote"><span ><b>Improved layout for the charscreen, better look for both EiRi and HUD in general</b></span></div></td></tr></table><br />Regards,<br />The Zero-Projekt team
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2008/09/27/if-you-enter-a-building/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://zero-projekt.net/files/screencaptures/800x_zero_lockpick.ogg" length="1502" type="audio/ogg" />
		</item>
		<item>
		<title>Yet another news update&#8230;</title>
		<link>http://zero-projekt.net/smf/index.php?topic=113.0</link>
		<comments>http://zero-projekt.net/smf/index.php?topic=113.0#comments</comments>
		<pubDate>Sat, 06 Sep 2008 21:51:17 +0000</pubDate>
		<dc:creator>Zero Projekt - English news</dc:creator>
				<category><![CDATA[Community news]]></category>
		<category><![CDATA[Zero-Projekt]]></category>

		<guid isPermaLink="false">http://zero-projekt.net/smf/index.php?topic=113.msg686#msg686</guid>
		<description><![CDATA[
Time for yet another news update about &#34;Zero - Was vom Morgen blieb&#34; <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /><br /><br /><span style="text-decoration: underline;">About entering buildings...</span><br />Up to now, the buildings in Zero weren&#39;t accessible by design. By creating tiled walls, we changed this now. Btw - our developers agreed to not use a system which introduces loading times if you enter a building. They said this would the worst thing you can do to the players.<br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/screenshots/91IhcymyJcEh.png" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/91IhcymyJcEh.png" alt="" width="400" border="0" /></a><br /></div><br /><span style="text-decoration: underline;">Fight, loot, allocate</span><br />After hardening the item system, we introduced lootable containers (which happen to be dead npcs, too ;-) ). This adds a lot more fun to the available gameplay, though. <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /><br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/screenshots/loot1.png" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/loot1.png" alt="" width="400" border="0" /></a><br /><br /><a href="http://zero-projekt.net/bilder/screenshots/loot2.png" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/loot2.png" alt="" width="400" border="0" /></a><br /><br /><a href="http://zero-projekt.net/bilder/screenshots/loot3.png" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/loot3.png" alt="" width="400" border="0" /></a><br /><br /><a href="http://zero-projekt.net/bilder/screenshots/loot4.png" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/loot4.png" alt="" width="400" border="0" /></a><br /></div><br /><span style="text-decoration: underline;">Welcome on board, Tor <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /></span><br />Again, we are able to introduce a new teammember of Zero. Tor - a skilled role player who also works as game master for Fallout PnPs - is reinforcing our story and gameplay department.<br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/screenshots/500px-Fallout_PnP.jpg" target="_blank"><img src="http://zero-projekt.net/bilder/screenshots/500px-Fallout_PnP.jpg" alt="" width="200" border="0" /></a><br /></div> 
			]]></description>
			<content:encoded><![CDATA[
Time for yet another news update about &quot;Zero - Was vom Morgen blieb&quot; <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /><br /><br /><span >About entering buildings...</span><br />Up to now, the buildings in Zero weren&#39;t accessible by design. By creating tiled walls, we changed this now. Btw - our developers agreed to not use a system which introduces loading times if you enter a building. They said this would the worst thing you can do to the players.<br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/screenshots/91IhcymyJcEh.png" ><img src="http://zero-projekt.net/bilder/screenshots/91IhcymyJcEh.png" alt="" width="400" border="0" /></a><br /></div><br /><span >Fight, loot, allocate</span><br />After hardening the item system, we introduced lootable containers (which happen to be dead npcs, too ;-) ). This adds a lot more fun to the available gameplay, though. <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /><br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/screenshots/loot1.png" ><img src="http://zero-projekt.net/bilder/screenshots/loot1.png" alt="" width="400" border="0" /></a><br /><br /><a href="http://zero-projekt.net/bilder/screenshots/loot2.png" ><img src="http://zero-projekt.net/bilder/screenshots/loot2.png" alt="" width="400" border="0" /></a><br /><br /><a href="http://zero-projekt.net/bilder/screenshots/loot3.png" ><img src="http://zero-projekt.net/bilder/screenshots/loot3.png" alt="" width="400" border="0" /></a><br /><br /><a href="http://zero-projekt.net/bilder/screenshots/loot4.png" ><img src="http://zero-projekt.net/bilder/screenshots/loot4.png" alt="" width="400" border="0" /></a><br /></div><br /><span >Welcome on board, Tor <img src="http://zero-projekt.net/smf/Smileys/classic/smiley.gif" alt="Smiley" border="0" /></span><br />Again, we are able to introduce a new teammember of Zero. Tor - a skilled role player who also works as game master for Fallout PnPs - is reinforcing our story and gameplay department.<br /><br /><div align="center"><a href="http://zero-projekt.net/bilder/screenshots/500px-Fallout_PnP.jpg" ><img src="http://zero-projekt.net/bilder/screenshots/500px-Fallout_PnP.jpg" alt="" width="200" border="0" /></a><br /></div> 
			]]></content:encoded>
			<wfw:commentRss>http://fifengine.net/2008/09/06/yet-another-news-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

