<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Epos of Realms and Alliances</title>
	<atom:link href="http://projectera.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://projectera.org</link>
	<description>Alva awaits</description>
	<lastBuildDate>Thu, 12 Jan 2012 13:49:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Development: Instant Play</title>
		<link>http://projectera.org/2012/01/development-instant-play/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=development-instant-play</link>
		<comments>http://projectera.org/2012/01/development-instant-play/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 11:22:29 +0000</pubDate>
		<dc:creator>Derk-Jan</dc:creator>
				<category><![CDATA[Development News]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[mechanics]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=310</guid>
		<description><![CDATA[Today I would like to tell you something about one of our features called instant play. Most flash games and other browser games usually don’t require you to go through some kind of registration phase to be able to play. Some games even provide the functionality to save your game state and continue later. The [...]]]></description>
			<content:encoded><![CDATA[<p>Today I would like to tell you something about one of our features called instant play.</p>
<p>Most flash games and other browser games usually don’t require you to go through some kind of registration phase to be able to play. Some games even provide the functionality to save your game state and continue later. The boundaries to start playing are lowered by these features as there is no consequence is playing, starting over or screwing up whatsoever. Epos of Realms and Alliances (ERA) is supposed to be lightweight and easy to get started with. Analogous to the flash games, we provide the possibility to play the game without registration. As a matter of fact, no registration is required to play or to continue playing. Starting over can be as easy as pressing instant play, yet the possibility to load an already existing journey remains.</p>
<p>Below I will elaborate on the mechanisms between instant play, the limitations and how the registration process takes place. Specifications are provided so one can learn and continue from and on this article as he or she likes.</p>
<h2>Feature</h2>
<p>Press a button and start playing. This mode is activated when you launch the game and press (instant) play. You will spawn in the world with your character randomized. Later in the game you have the possibility to restyle yourself. However, if you are unsatisfied with your looks, you can always start anew. The story is not directly introduced, but will be presented gradually. As for game play, a short tutorial guided by a sequence of images will provide all the necessary knowledge to freely roam the world. This way a more comprehensive tutorial (but also invasive as to freely roaming) is not mandatory each time you start a new session, with the side note that some players just don’t like tutorials.</p>
<h2>Authentication</h2>
<p>To explain how the feature works internally I first need to explain how authentication works in the first place because the feature is a special case of this authentication. Please remember that we use distributed servers that are eventually consistent, but for the sake of this post, assume that we only deal with once server and one database on that server.</p>
<h3>The MD5 approach</h3>
<p>In the time we didn&#8217;t knew any collisions for the <a title="Wikipedia on MD5" href="http://en.wikipedia.org/wiki/MD5" target="_blank">md5 hash algorithm</a> it was practice to hash the password &#8211; preferably salted &#8211; and save this password in combination with the username in a remote database. Even though this was already bad practice, <a title="Wikipedia on Rainbow tables" href="http://en.wikipedia.org/wiki/Rainbow_table" target="_blank">rainbow tables </a>where not used that much. A simple select statement would yield the validity of the credentials and the account. Nowadays we know that there is much wrong with this approach in the first place and that it is easily compromised. Using a rainbow table, this method is the same as saving passwords as plain text and that is not a very good thing to do. Read about these methods and their strengths <a title="Competitive analysis of SRPP" href="http://djdex.net/6" target="_blank">here</a>.</p>
<p title="The Secure Remote Password Protocol ">Apart from the fact that a rainbow table reveals all short passwords if the database would have been hacked, a man in the middle attack &#8211; where someone poses as the destination server but in fact records everything that is said or in our case sent. Sometimes data is modified as well. To deal with this problem, SSL uses a third-party (<a title="Wikipedia on Certificate Authorities" href="http://en.wikipedia.org/wiki/Certificate_authority" target="_blank">certificate authority CA</a>) to authenticate the endpoint(s). This third-party connection is something we can&#8217;t afford in terms of speed and complexity, at least not every connection, so we had to come up with another approach. In fact, we would like to look at the following 6 points (taken from the section security analysis of the <a title="The Secure Remote Password Protocol " href="http://djdex.net/5" target="_blank">SRPP paper</a>):</p>
<ol>
<li>Prevent an attacker from being able to guess and verify password P based on exchanged messages.</li>
<li>No useful information about the session key <em>K</em> is revealed to an eavesdropper during a successful run.</li>
<li>The protocol should prevent the intruder from gaining access to the host or learning any information about passwords or session keys, even if an intruder has the ability to alter or create his own messages and forge the origin.</li>
<li>If the host&#8217;s password file is captured and the intruder learns the value of <em>v</em> (password equivalent such as a compute(P) value saved on the server), it should still not allow the intruder to impersonate the user without an expensive dictionary search.</li>
<li>If the session key K of any past session is compromised, it should not help the intruder guess at or otherwise deduce the user&#8217;s password P.</li>
<li>If the user&#8217;s password P itself is compromised, it should not allow the intruder to determine the session key <em>K</em> for past or present sessions and decrypt them.</li>
</ol>
<h3>The secure remote password protocol</h3>
<p>A guy from Stanford (could have easily been a girl) called Thomas Wu came up with a secure way of handshakes to make a third-party redundant while also obscuring passwords in such way that the password is never sent over the network and not saved in the database. All the six points from above are covered. I would suggest, if you are interested to read about it because it&#8217;s a pretty good read. <a title="The Secure Remote Password Protocol " href="http://djdex.net/5" target="_blank">Here </a>is a link to the paper itself with the following abstract.</p>
<h2>Registration</h2>
<p>So the method of authenticating is secure, but we have no way yet to insert verifiers into the database (password equivalent such as a computation on P. We don&#8217;t like to send the password over the network so instead we do it a little bit different. This time we have to make sure that:</p>
<ol>
<li>The password is not transferred over the network.</li>
<li>The registration server is valid (we don&#8217;t want any man in the middle attack).</li>
<li>The connection is secure.</li>
</ol>
<p>The specifications of the authentication algorithm are open to anyone and it doesn&#8217;t break with that property. This means that calculating the value of verifier v can be done by anyone, if you know password P. We use this to eliminate point one. If you read the paper you realize that even if some client knows v, but not P, any authentication attempt will fail because this client will not be able to compute any verification code as this client misses the value of P.  All this means is that capturing v while registering will not directly compromise the password without some extensive dictionary search.</p>
<p>But we rather not have it being captured, so we have device some contraption in terms of code to make sure that the road on which the information travels is a private road and that the destination is &#8230; well us and not some third-party. Right now we didn&#8217;t see any other solution than setting up a one way secure connection since we only need to send information towards the server, which will record this information. And what better way to use a SSL connection? What we need is a SSL certificate on the server end which will be able to decrypt the information it was send &#8211; this is the private key. Which each client (or web-server) we include a copy of a way to encrypt the information &#8211; this is the public key and voilà, we keep the connection secure and validate the endpoint by using SSL.</p>
<h2>Anonymous registration</h2>
<p>Ok, we can now register new members in a secure way and authenticate them too. How do we go from that to instant play? All we need is a unique anonymous registration. So what we do is call up the registration service sending &#8220;Anonymous&#8221; and no password. The server generates an unused username (just some numbers and letters) and sends these back to the client. We don&#8217;t mind it being unsecured, the username U is publicly exposed during SRPP. The client now generates a password P and stores this with the username in a key-file on the computer. The client now calculates the value v and sends this &#8211; encrypted &#8211; back to the server to complete registration.</p>
<p>The key-file is used when hitting instant play (continue) and destroyed when choosing instant play (new). We don&#8217;t mind someone not being registered, since would still be able to block IP&#8217;s and hostnames as we would when someone is registered.</p>
<h2>Limitations</h2>
<p>Storing the anonymous values as plain text in a key-file itself is insecure. If this file was stolen, the player would lose his or her account. However, this is just one of the downsides of playing with this method. What we could do is provide the capability to encrypt the key file with a password which one must enter to play, but that would defeat some of the beauty of just pressing enter and playing directly.</p>
<p>Since the usernames are generated we don&#8217;t allow players to add friends to their profile. Friends don&#8217;t go per avatar but per user. Furthermore, support tickets can&#8217;t be requested by instant play users, since we don&#8217;t have any clue who this person is and we don&#8217;t have an e-mail address that goes with the account. In case of security questions we would never be able to verify that this person is actually the original owner of the key-file, so we simply don&#8217;t allow it.</p>
<p>You can only play the instant play session on the computer you created the session. However we do provide the ability to save the key-file and thus making it possible to import the session on another computer. This also means that you could have various session stored on one computer, but this is all much more work to maintain.</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2012/01/development-instant-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Development Blog]]></series:name>
	</item>
		<item>
		<title>New website running</title>
		<link>http://projectera.org/2012/01/new-website-running/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-website-running</link>
		<comments>http://projectera.org/2012/01/new-website-running/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 22:11:04 +0000</pubDate>
		<dc:creator>Derk-Jan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Website News]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=94</guid>
		<description><![CDATA[4 January 2012 The new website is now running. This is merely a post to confirm the migration was successful. Update 10 January 2012 The website has been upgraded to use HTML5 and CSS3. The number of templates used by the site is greatly reduced and the style sheet was completely rewritten to use CSS3 [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>4 January 2012</strong></h2>
<p>The new website is now running. This is merely a post to confirm the migration was successful.</p>
<h2 style="text-align: left;"><strong>Update 10 January 2012</strong></h2>
<p style="text-align: left;">The website has been upgraded to use HTML5 and CSS3. The number of templates used by the site is greatly reduced and the style sheet was completely rewritten to use CSS3 and be more clean and efficient. There are some great posts on how to convert a theme to the new HTML5 and CSS3 and the posts I used are mentioned below.</p>
<ul>
<li><a title="Conver theme to HTML5" href="http://www.designzzz.com/how-to-convert-wordpress-theme-html5/" target="_blank">Convert theme to HTML5</a></li>
<li><a href="http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/" target="_blank">HTML5 and CSS3 techniques</a></li>
</ul>
<p style="text-align: left;">This was not the only update I made, because I also added the author meta data box as you can also see below this post. It will show you how created the content and a little bit of information on that author. I didn&#8217;t use another plugin, I simply followed the post below as instructed and voila. I am going to make some more changes to add a little bit more information.</p>
<ul>
<li><a title="Conver theme to HTML5" href="http://www.designzzz.com/how-to-convert-wordpress-theme-html5/" target="_blank">Displaying Author Meta Data in WordPress 3</a></li>
</ul>
<p>The series metabox was also restyled and I added Facebook connect to the comment system. I only did this because later on Facebook connect will also be used to &#8211; if you want to &#8211; register you for the game. When you write comments we can link your ERA account to these comments and so forth and so on.</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2012/01/new-website-running/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Development: Summer 2011</title>
		<link>http://projectera.org/2011/07/development-summer-2011/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=development-summer-2011</link>
		<comments>http://projectera.org/2011/07/development-summer-2011/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 01:24:24 +0000</pubDate>
		<dc:creator>Derk-Jan</dc:creator>
				<category><![CDATA[Development News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=107</guid>
		<description><![CDATA[Dear devoted fans, A month prior to the summer break of 2011 we resumed working on the development of ERA with the help of a new team-member I picked up on the university. We restarted the project code-wise, as we now like to release the clients as tech-demo and want to use developing ERA as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://projectera.org/the-world-of-era/eracompilation_2/" rel="attachment wp-att-47"><img class="size-full wp-image-47 aligncenter" title="ERA Header" src="http://projectera.org/wp-content/uploads/2011/11/eracompilation_2.png" alt="Epos of Realms and Alliances" width="640" height="252" /></a></p>
<p>Dear devoted fans,</p>
<p>A month prior to the summer break of 2011 we resumed working on the development of ERA with the help of a new team-member I picked up on the university. We restarted the project code-wise, as we now like to release the clients as tech-demo and want to use developing ERA as a way of autodidacting and evolving ourselves in the wonderful world of programming. Making a tech-demo means we will try to exploit the language, the framework, the hardware and ourselves in the best and worst way we possibly could in order to create an advanced product. This might result in complicated mechanics in the game, but we will do our bests to resolve such problems the best we can and we will design to entertain all kinds of gamers. From now on regular updates are on the agenda, either with text or non-text. The following things are at hand:</p>
<ul>
<li>If you really like to stay in the loop, I encourage you to follow us on Twitter (<a href="http://go.projectera.org/tweet" target="_blank">@ERA_RPG</a>). The updates placed here will be too short to post on Facebook, here or other community sites but may contain valuable or interesting information we&#8217;d like to share.</li>
<li>If you would like to participate in closed test rounds, I advice you to also like <a href="http://go.projectera.org/fb" target="_blank">our Facebook page</a>. Closed test rounds will last between hours and days and participants are selected from our Twitter followers, Facebook fans and Forum subscribers. It will give you exclusive access to the development cycle of ERA and give you insights into new features. These tests will be scheduled starting this fall.</li>
<li>Game Mechanics changed and bit by bit will be revealed. As you can see numerous TBA mark the sticky topic on this board and information hidden from you right now will be released in time. Don&#8217;t worry, we will announce it each time an update took place, so you don&#8217;t need to check our posts each and every day.</li>
<li>The ERA Team would like your input. What would you like to see in ERA? Please tweet us or share us your ideas on Twitter or Facebook. Later on we will have the polls up on our <a href="http://go.projectera.org/forum" target="_blank">forum</a>.</li>
</ul>
<p>We are back baby and are better than ever before.</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2011/07/development-summer-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Development Blog]]></series:name>
	</item>
		<item>
		<title>The Confused Traveller</title>
		<link>http://projectera.org/2010/01/the-confused-traveller/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-confused-traveller</link>
		<comments>http://projectera.org/2010/01/the-confused-traveller/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 23:51:33 +0000</pubDate>
		<dc:creator>Derk-Jan</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[cave]]></category>
		<category><![CDATA[confused traveller]]></category>
		<category><![CDATA[lake]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[monastery]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[sewer]]></category>
		<category><![CDATA[story]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[trade route]]></category>
		<category><![CDATA[village]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=191</guid>
		<description><![CDATA[This is you. As newbie on Alva, you&#8217;ll arrive in a small settlement next to the shore. It&#8217;s nothing less than the starting point for your great adventure. But before you will stroll through these lands, most likely rampaging as an idiot, while slaying the monster on your path, making friends wherever you going and [...]]]></description>
			<content:encoded><![CDATA[<p>This is you. As newbie on Alva, you&#8217;ll arrive in a small settlement next to the shore. It&#8217;s nothing less than the starting point for your great adventure. But before you will stroll through these lands, most likely rampaging as an idiot, while slaying the monster on your path, making friends wherever you going and in the end becoming a hero, we need to tell you something about these places you&#8217;ll visit during your journey. About the history of the forests, the lakes, caves, and the mountains, so you can prepare yourself on everything that&#8217;s yet to come&#8230;</p>
<p>Once arrived you have a good look around, because the world you are now entering seems so much different than the lands previously visited. A small fishermen-village lays before you and with enthusiasm you start exploring your surrounding. It&#8217;s not much later that you learn that much of the villagers are actually fishermen, but that not everyone is honest about their achievements and the fish they catch. You hear rumours about some fishermen making deals with the devilishly blue creatures, the nightmare of all fishermen &#8211; not only because they seem immensely strong -  because they scare away all the fish with their screaming and their stench. You decided to investigate the matter. Are these fishing spots overflowing by coincident or is there a secret society behind all this mess&#8230; ?</p>
<div id="attachment_65" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-65" title="The Confused Traveller: Village" src="http://projectera.org/wp-content/uploads/2011/11/Village.png" alt="The Confused Traveller: Village" width="680" height="520" /><p class="wp-caption-text">Diary entry of The Confused Traveller: Village</p></div>
<div id="attachment_44" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-44" title="The Confused Traveller: Cave" src="http://projectera.org/wp-content/uploads/2011/11/Cave.png" alt="The Confused Traveller: Cave" width="680" height="520" /><p class="wp-caption-text">Diary entry of the The Confused Traveller: Cave</p></div>
<p>In the north-west of Dublith County you discover this mystical and mysterious structure, which has been used as church. It has been years since the last service, but it seems that activity in and around the church has been increasing dramatically.  You decided to enter&#8230;</p>
<div id="attachment_56" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-56" title="The Confused Traveller: Monastery" src="http://projectera.org/wp-content/uploads/2011/11/Monastery.png" alt="The Confused Traveller: Monastery" width="680" height="520" /><p class="wp-caption-text">Diary entry of The Confused Traveller: Monastery</p></div>
<div id="attachment_49" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-49" title="The Confused Traveller: Ghosts" src="http://projectera.org/wp-content/uploads/2011/11/Instance.png" alt="The Confused Traveller: Ghosts" width="680" height="520" /><p class="wp-caption-text">Diary entry of The Confused Traveller: Ghosts</p></div>
<p>Woah. You are glad you are outside again. Now fleeing from the scene, you head eastbound, to the countries capital called Dublith, also Lewa&#8217;s biggest city. Here you trade some goods and talk to locals. You solve some of their problem and you excite yourself with new secrets to unravel. On your way here you pass the great lake and a stone road leads you to the heart of the city, safe from all the dangers hidden in the forests and fields between the church and the city.</p>
<div id="attachment_50" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-50" title="The Confused Traveller: Lake" src="http://projectera.org/wp-content/uploads/2011/11/Lake.png" alt="The Confused Traveller: Lake" width="680" height="520" /><p class="wp-caption-text">Diary entry of The Confused Traveller: Lake</p></div>
<div id="attachment_66" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-66" title="The Confused Traveller: Village" src="http://projectera.org/wp-content/uploads/2011/11/Village2.png" alt="The Confused Traveller: Village" width="680" height="520" /><p class="wp-caption-text">Diary entry of the Confused Travller: Village</p></div>
<p>Your last stop before Dublith is this outpost. The soldiers are training together to protect the civilians. It&#8217;s a place where they can improve their skills but also take a break in their hectic lives. We call this place Cortez Outpost and it&#8217;s one of the many outpost on the trade route. Salesmen will try to sell their goods, while the leaders of the outposts try to recruit new blood.</p>
<div id="attachment_45" class="wp-caption alignnone" style="width: 690px"><img class="size-full wp-image-45" title="The Confused Traveller: Cortez Outpost" src="http://projectera.org/wp-content/uploads/2011/11/Cortez-Outpost.png" alt="The Confused Traveller: Cortez Outpost" width="680" height="520" /><p class="wp-caption-text">Diary entry of the The Confused Traveller: Cortez Outpost</p></div>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2010/01/the-confused-traveller/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<series:name><![CDATA[The Confused Traveller]]></series:name>
	</item>
		<item>
		<title>Story: The Moduli</title>
		<link>http://projectera.org/2009/04/story-the-moduli/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=story-the-moduli</link>
		<comments>http://projectera.org/2009/04/story-the-moduli/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 06:57:46 +0000</pubDate>
		<dc:creator>Milan</dc:creator>
				<category><![CDATA[Story]]></category>
		<category><![CDATA[faith]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[moduli]]></category>
		<category><![CDATA[story]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=166</guid>
		<description><![CDATA[High up in the Tower a meeting takes place. All the important priests are present, the general and his advisers are also taking part. On his throne sits the Prophet, listening how his subjects congregate. Silas, a guard, stands left to the entrance of the conference room. It&#8217;s his first time he has been allowed [...]]]></description>
			<content:encoded><![CDATA[<p>High up in the Tower a meeting takes place. All the important priests are present, the general and his advisers are also taking part. On his throne sits the Prophet, listening how his subjects congregate. Silas, a guard, stands left to the entrance of the conference room. It&#8217;s his first time he has been allowed to join the attendees inside, after ten years of loyal service. On the right side of the high solid oak doors is Brundt, a college who guards the conference room for a while now. The doors are so wide that Silas and Brundt would not be able to touch each other when they would point their spears at each other, the space between the tips being barely a space.</p>
<p>The meeting has been going for an hour when a light vibration in the air mutes all the voices. Silas sees that everyone is looking straight ahead. He doesn&#8217;t understand why they all just stopped talking. Suddenly the room is brightly lit and a loud reverberation bangs like a boot made of smooth metal hitting a marble floor. From the light that keeps floating in the air like a portal steps a large, armoured figure. The giant is roughly twice of Silas&#8217; size and every inch of his enormous body is covered by strong metal in golden and white colours. His pounding footsteps are followed by an empty silence. Everyone except for the prophet is mumbling prayers while their hands are joint.</p>
<p><img class="alignnone size-full wp-image-42" title="Art: Moduli" src="http://projectera.org/wp-content/uploads/2011/11/art_moduli.png" alt="" width="100%" /></p>
<p>With a calm pace the giant moves towards the Prophet, who is looking at him, serene and unruffled. Each step fills the room with a freezing sound. The Prophet greets him, upon which the appearance makes an unusual gesture with his long fingers. The helmet of the stupendous armour moves almost unobserved when he starts speaking with a deep ineluctable voice. Silas, who doesn&#8217;t master any form of magic or followed any strange study, is not able to understand any of the words that fill the room. The Prophet however didn&#8217;t seem to have any difficulty answering the apparent questions of the giant.<br />
Confused and afraid, Silas tries to whisper his colleague to find out what is going on, but he regrets that decision in an instant. The Prophet looks disturbed towards Silas and the mysterious creature slowly turns his helmeted head towards the anxious guard. When the giant looks at him he feels like he is staring into a deep ravine. Behind the gunsight of the helmet he can only see darkness and while it&#8217;s making him even more anxious, a clashing feeling of trust and loyalty overcomes him. It&#8217;s an ancient being that possesses powers even the mightiest magicians can&#8217;t withstand.</p>
<p>After a long, bleak yet empowering silence the ancient deflects from Silas and continues his dialogue with the Prophet as if nothing happened. It&#8217;s not long until the conversation comes to an end, upon which the giant takes a step back. The same portal of light is called in existence and he dissolves in thin air. Silas is relieved, because even though he felt the wisdom the giant seemed to radiate, his eyes emitted emptiness. It was better the creature was no longer with them.</p>
<p>The being that appeared in the conference room of the Arcane Order, is a direct descendant of the Gods and has been existing on Alva since her birth. We call them the Moduli. These were created &#8211; when the Gods went down to Alva after they finished composing her &#8211; in their image. The Moduli were less powerful than the Gods themselves, but nonetheless were they gifted in manipulation synths and had no limits in what they could create. The Gods left Alva and donated the world to the Moduli as an empire to live on, symbiont with the nature.<br />
During thousand years the Moduli explored every corner of Alva. They&#8217;ve built a mighty city, Altmodus, high up in the mountains. To honor their creators, they constructed palaces and temples of faith, while engraving all their collective knowledge on the walls of these sacred structures, in effect mapping the entire world. Prosperity came to an unexpected end.<br />
No one knows why, but one day the might of the Moduli started to decline. Over the next few years, their gifts diminished until after a hundred year, their power to create was completely obliterated. A few great qualities remained, but magical strengths kept decreasing. Despair made the Moduli glance to the skies, made them pray to the God for forgiveness, without knowing the act that called upon this damnation. An answer never came.</p>
<p>Broken and knocked down the Moduli returned to Altmodus, the only home they had left in their once so beautiful world. A place now even for them not without dangers&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2009/04/story-the-moduli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trade route outpost</title>
		<link>http://projectera.org/2008/12/trade-route-outpost/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=trade-route-outpost</link>
		<comments>http://projectera.org/2008/12/trade-route-outpost/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:11:50 +0000</pubDate>
		<dc:creator>Jaap</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[dublith county]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[trade route]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=139</guid>
		<description><![CDATA[The Trade Route that crosses Dublith County is much used by all kinds of traders and salesmen. Naturally the act of transporting goods is never completely without danger. This is why the Lewan Empire instated roadblocks where all that come true are thoroughly  screened and those with evil intentions are captured before they can do [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_48" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-48" title="Trade Route Post" src="http://projectera.org/wp-content/uploads/2011/11/fortressiz2.png" alt="Trade Route Post" width="640" height="480" /><p class="wp-caption-text">Snapshot of the Trade Route Post near the Great Lake</p></div>
<p>The Trade Route that crosses Dublith County is much used by all kinds of traders and salesmen. Naturally the act of transporting goods is never completely without danger. This is why the Lewan Empire instated roadblocks where all that come true are thoroughly  screened and those with evil intentions are captured before they can do any harm. Nonetheless, the area&#8217;s around these outposts aren&#8217;t free from hostile animals. Luckily you&#8217;ve got some guards to come to your rescue&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/12/trade-route-outpost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Dublith County]]></series:name>
	</item>
		<item>
		<title>A Dublithian village</title>
		<link>http://projectera.org/2008/12/a-dublithian-village/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-dublithian-village</link>
		<comments>http://projectera.org/2008/12/a-dublithian-village/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:10:17 +0000</pubDate>
		<dc:creator>Bas</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[dublith county]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[village]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=134</guid>
		<description><![CDATA[On Alva&#8217;s timeline, Lewa doesn&#8217;t cover a lot of space. The region is fairly young and not everything is heavily populated and therefore a lot of farmers existence remains, just like this friendly village &#8211; at least that is what they want you to think &#8211; where stress and pressure is not found in the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_67" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-67" title="Dublithian Village" src="http://projectera.org/wp-content/uploads/2011/11/villagefr3.png" alt="Dublithian Village" width="640" height="480" /><p class="wp-caption-text">Snapshot of a Dublithian Village</p></div>
<p>On Alva&#8217;s timeline, Lewa doesn&#8217;t cover a lot of space. The region is fairly young and not everything is heavily populated and therefore a lot of farmers existence remains, just like this friendly village &#8211; at least that is what they want you to think &#8211; where stress and pressure is not found in the dictionaries. Buy local items, such as food to recharge you on your journey, or new weapons, by farmers used to cultivate the fields. Perhaps you&#8217;ll find your destiny or just a quest that will earn you some money&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/12/a-dublithian-village/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Dublith County]]></series:name>
	</item>
		<item>
		<title>The Great Lake</title>
		<link>http://projectera.org/2008/12/the-great-lake/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-great-lake</link>
		<comments>http://projectera.org/2008/12/the-great-lake/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:09:34 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[dublith county]]></category>
		<category><![CDATA[lake]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[trading route]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=132</guid>
		<description><![CDATA[Next to mountains, fields, forests, villages and beaches, these humongous lakes are part of Alva&#8217;s scenery. The lake you can see here can be found in Dublith County. It just looks like a bug puddle of water, but a closer look might yield some unexpected mysteries to be seen. Ask yourself: Why is there so [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_51" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-51" title="The Great Lake" src="http://projectera.org/wp-content/uploads/2011/11/lakeiy1.png" alt="The Great Lake" width="640" height="480" /><p class="wp-caption-text">Snapshot of the Great Lake</p></div>
<p>Next to mountains, fields, forests, villages and beaches, these humongous lakes are part of Alva&#8217;s scenery. The lake you can see here can be found in Dublith County. It just looks like a bug puddle of water, but a closer look might yield some unexpected mysteries to be seen. Ask yourself: Why is there so much growing in this lake and while it&#8217;s so filled with vegetation, it seems that animals are almost abundant in existence. But more importantly, how got all this water over here in the first place? Unravel the secrets of Lewa to become a real Lewan or better yet to better understand the people around you. With the trading route connecting this lake to Dublith and the other more civilised regions of Dublith County, the lake is passed daily by a lot of people. You might catch some useful information or mere rumours from passing civilians, on your journey to the unknown&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/12/the-great-lake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Dublith County]]></series:name>
	</item>
		<item>
		<title>Arcane Order camp</title>
		<link>http://projectera.org/2008/12/arcane-order-camp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=arcane-order-camp</link>
		<comments>http://projectera.org/2008/12/arcane-order-camp/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:08:22 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[arcane order]]></category>
		<category><![CDATA[camp]]></category>
		<category><![CDATA[dublith county]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[screenshot]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=125</guid>
		<description><![CDATA[Throughout Lewa you will encounter all the different camps of the Arcane Order. Some still very much alive and heavily populated, others abandoned and completely empty. These camps were used and are still used by the Arch Mages their followers and preachers to lure in new members. Take a look in one of the tents [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_41" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-41 " title="Arcane Order Camp" src="http://projectera.org/wp-content/uploads/2011/11/aocampyr4.png" alt="Arcane Order Camp" width="640" height="480" /><p class="wp-caption-text">Snapshot of the Arcane Order Camp near the Great Lake</p></div>
<p>Throughout Lewa you will encounter all the different camps of the Arcane Order. Some still very much alive and heavily populated, others abandoned and completely empty. These camps were used and are still used by the Arch Mages their followers and preachers to lure in new members. Take a look in one of the tents and who knows what happens. You might find yourself an ally, or enemy. Because the Arcane Order doesn&#8217;t want to deal with the guards protecting the more civilised area&#8217;s, these camps are usually located in fields and forests and not inside a thriving city. Don&#8217;t be scared if you will come face to face with an Imp, Wolves or another hostile&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/12/arcane-order-camp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Dublith County]]></series:name>
	</item>
		<item>
		<title>The Beaches of Dublith</title>
		<link>http://projectera.org/2008/12/the-beaches-of-dublith/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-beaches-of-dublith</link>
		<comments>http://projectera.org/2008/12/the-beaches-of-dublith/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 06:53:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[beach]]></category>
		<category><![CDATA[dublith county]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[screenshot]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=177</guid>
		<description><![CDATA[These are the Beaches of Dublith. One of the most serene places between the sea and the border to Hawkswood and Viridea Vale. There are many beaches with equally much sand to be traversed. The Sahagin-like beasts rule these places &#8211; together with other water-freaks &#8211; filled with sand, stone and some vegetation. Come come [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_43" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-43" title="Dublith Beach" src="http://projectera.org/wp-content/uploads/2011/11/beachlc6.png" alt="Dublith Beach" width="640" height="480" /><p class="wp-caption-text">Snapshot of a cave entrance on one of the Dublith Beaches</p></div>
<p>These are the Beaches of Dublith. One of the most serene places between the sea and the border to Hawkswood and Viridea Vale. There are many beaches with equally much sand to be traversed. The Sahagin-like beasts rule these places &#8211; together with other water-freaks &#8211; filled with sand, stone and some vegetation. Come come for solitude and others to train. Digging up treasures or catching fishes &#8211; there&#8217;s enough opportunity for action and it&#8217;s up to you to take it&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/12/the-beaches-of-dublith/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Dublith County]]></series:name>
	</item>
		<item>
		<title>Mystery Monastery</title>
		<link>http://projectera.org/2008/12/mystery-monastery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mystery-monastery</link>
		<comments>http://projectera.org/2008/12/mystery-monastery/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 06:52:05 +0000</pubDate>
		<dc:creator>Jaap</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[dublith county]]></category>
		<category><![CDATA[faith]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[monastery]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[shrine]]></category>
		<category><![CDATA[structure]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=175</guid>
		<description><![CDATA[This old building purposed as church a long time ago. It has been abandoned for years, but lately there seems to be more activity around and underneath this house of faith. There is yet someone to to be who has the courage to investigate this phenomena. Is the basement of this monastery filled with things [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_57" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-57" title="The Monastery" src="http://projectera.org/wp-content/uploads/2011/11/monastryrx6.png" alt="The Monastery" width="640" height="480" /><p class="wp-caption-text">Snapshot of the entrance of The Monastery</p></div>
<p>This old building purposed as church a long time ago. It has been abandoned for years, but lately there seems to be more activity around and underneath this house of faith. There is yet someone to to be who has the courage to investigate this phenomena. Is the basement of this monastery filled with things that should never see the light of day or are there only lost treasures all that is left on this sacred place&#8230;.</p>
<div id="attachment_58" class="wp-caption alignnone" style="width: 650px"><img class="size-full wp-image-58" title="The Shrine" src="http://projectera.org/wp-content/uploads/2011/11/shrinexn2.png" alt="The Shrine" width="640" height="480" /><p class="wp-caption-text">Snapshot of The Shrine near The Monastery</p></div>
<p>Outside the monastery one can still find some relics that indicate off a faithful existence. This shrine remains ever so preserved, rumor has it that the ghosts of the ministers and clerks who past away protect the relic. Stories speak of the white ghosts that used to appear when danger was near, but there is yet to be a person who can confirm seeing this with their own eyes&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/12/mystery-monastery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Dublith County]]></series:name>
	</item>
		<item>
		<title>Development: Year of 2008</title>
		<link>http://projectera.org/2008/11/development-year-of-2008/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=development-year-of-2008</link>
		<comments>http://projectera.org/2008/11/development-year-of-2008/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 22:11:14 +0000</pubDate>
		<dc:creator>Derk-Jan</dc:creator>
				<category><![CDATA[Development News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[enemy armies]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[lewa]]></category>
		<category><![CDATA[nationalities]]></category>

		<guid isPermaLink="false">http://projectera.org/?p=117</guid>
		<description><![CDATA[Music Sample Step right into the atmosphere of the ERAExperience by listening to this compilation while reading the post. It&#8217;s a taste of what you will hear in the game, once it&#8217;s accessible for everyone. The music, such as the background songs for the epilogue, the caves, dungeons and so forth and so on are [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://projectera.org/the-world-of-era/eracompilation_2/" rel="attachment wp-att-47"><img class="aligncenter size-full wp-image-47" title="ERA Header" src="http://projectera.org/wp-content/uploads/2011/11/eracompilation_2.png" alt="Epos of Realms and Alliances" width="640" height="252" /></a></h2>
<h2>Music Sample</h2>
<p>Step right into the atmosphere of the ERAExperience by listening to this compilation while reading the post. It&#8217;s a taste of what you will hear in the game, once it&#8217;s accessible for everyone. The music, such as the background songs for the epilogue, the caves, dungeons and so forth and so on are mainly arranged by Milan Rang, a part from a few songs by Derk-Jan Karrenbeld. All the pieces are of the uttermost quality, since we want to take you on the perfect gaming experience. That said, this is still the internet and bandwidth is everything but unlimited, the reason the sample is half the quality of in game sounds.</p>
<p style="text-align: center;"><a href="http://archived.projectera.org/newsletters/08/nov/3RASampleCompilation.mp3">Download ERA Sample Compilation (MP3)</a></p>
<h2>Enemy Armies</h2>
<p>You&#8217;ve been reading about the struggle &#8211; the endless battle &#8211; in which the New Age Alliance and The Arcane Order take their stand. But what we haven&#8217;t told you is that we created some third-party-threats, which we call Enemy Armies. They aren&#8217;t in the same way entangled in the story and history of Alva, but made their fair share of appearances in the past and beyond. As war has commenced, no one is left to keep these armies from rising, in effect making them stronger and more powerful over time, and that is a bad thing for everyone, whether you&#8217;re controlling synths or machines.</p>
<h2>Nationalities</h2>
<p>In ERA you&#8217;ll meet people with one out of four different nationalities and inherent with those one out of four races. They all originate from different places, but the war on Alva has brought them together. Even though the boundaries of the countries keep shifting, the four people nationalities still carry their specific marks:</p>
<ul>
<li type="square">The first people you will encounter are Lewans, all part of a Celtic civilization. Their skin has no tan, but they do seem to have just that little bit of colour that separates them from the northern folks. Dublith is their capital.</li>
<li type="square">The more humid and warmer area&#8217;s of Alva are mostly populated by Sumni, the people with the dark skin that mostly live on the southern hemisphere. The biggest groups of Sumni make their way in and around the cities Barani, Roj and Nishati.</li>
<li type="square">Closer to the Dun&#8217;Aroon Wastelands you can find the human most alike to our Arabs. The captital of the Dal&#8217;Ahani is called Basra.</li>
<li type="square">Finally we have the race that populates the land up north, where the wind breezes colder and the rain falls harder. Where plants refuse to grow as big as anywhere else. The skin pale but rough, the latter is the same for their posture. If you like these mostly bald men, go towards Brunhilde, the cornerstone of their society,</li>
</ul>
<h2>Habitat of the Lewans</h2>
<p>At some point you will arrive at Dublith, the harbor in the Celtic territory. Dublith is the Amsterdam on her most flourishing days during the Golden Century; magicians, artists, salesmen and thieves; their all present. The region around Dublith carries the name of Dublith County, under which an extensive network of Sewers lays till every corner of the area.</p>
<p>More north to Dublith County is Hawkswood, a large forest with many mysteries. Viridia Vale has a lot of agriculture and Shadowfall Forest is densly packed with flora in particular.  Below you can see the Celtic territory in a schematic manner:</p>
<p><img class="alignnone" title="Habitat of Lewa" src="http://archived.projectera.org/newsletters/08/nov/f_keltareacolm_e036a7e.png" alt="" width="611" height="693" /></p>
]]></content:encoded>
			<wfw:commentRss>http://projectera.org/2008/11/development-year-of-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://archived.projectera.org/newsletters/08/nov/3RASampleCompilation.mp3" length="4577852" type="audio/mpeg" />
	
		<series:name><![CDATA[Development Blog]]></series:name>
	</item>
	</channel>
</rss>

